~ubuntu-branches/ubuntu/karmic/gbrainy/karmic

« back to all changes in this revision

Viewing changes to src/PuzzleGames/PuzzleDivideCircle.cs

  • Committer: Bazaar Package Importer
  • Author(s): Siegfried-Angel Gevatter Pujals, Siegfried-Angel Gevatter Pujals, Mirco Bauer
  • Date: 2009-06-15 00:11:47 UTC
  • mfrom: (9.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090615001147-bw27frzb154mb9e9
Tags: 1.11-1
[ Siegfried-Angel Gevatter Pujals ]
* New upstream release:
   - Updated translations: it, nl, pt_BR, sk, es, eu, en_GB; new: cs.
   - Fullscreen mode support.
   - 3 bug fixes.

[ Mirco Bauer ]
* debian/control:
  + Fixed libgnome2.24-cil build dependency by adding a missing comma
    (wondering how dpkg could ever parse this).

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
        static private void DrawAndConnectPoints (CairoContextEx gr, double x, double y, Circle[] circles, bool connect)
67
67
        {
68
 
                double point_size = 0.01;
 
68
                const double point_size = 0.01;
69
69
                for (int i = 0; i < circles.Length; i++) {
70
70
                        gr.Arc (x + point_size + circles[i].x, y + point_size + circles[i].y, point_size, 0, 2 * Math.PI);
71
71
                        gr.Fill ();