~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_arc.h

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
// Anti-Grain Geometry - Version 2.4
3
3
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
4
4
//
5
 
// Permission to copy, use, modify, sell and distribute this software 
6
 
// is granted provided this copyright notice appears in all copies. 
 
5
// Permission to copy, use, modify, sell and distribute this software
 
6
// is granted provided this copyright notice appears in all copies.
7
7
// This software is provided "as is" without express or implied
8
8
// warranty, and with no claim as to its suitability for any purpose.
9
9
//
28
28
 
29
29
    //=====================================================================arc
30
30
    //
31
 
    // See Implementation agg_arc.cpp 
 
31
    // See Implementation agg_arc.cpp
32
32
    //
33
33
    class arc
34
34
    {
35
35
    public:
36
36
        arc() : m_scale(1.0), m_initialized(false) {}
37
 
        arc(double x,  double y, 
38
 
            double rx, double ry, 
39
 
            double a1, double a2, 
 
37
        arc(double x,  double y,
 
38
            double rx, double ry,
 
39
            double a1, double a2,
40
40
            bool ccw=true);
41
41
 
42
 
        void init(double x,  double y, 
43
 
                  double rx, double ry, 
44
 
                  double a1, double a2, 
 
42
        void init(double x,  double y,
 
43
                  double rx, double ry,
 
44
                  double a1, double a2,
45
45
                  bool ccw=true);
46
46
 
47
47
        void approximation_scale(double s);