~ubuntu-branches/ubuntu/saucy/kig/saucy

« back to all changes in this revision

Viewing changes to objects/other_imp.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Jonathan Riddell, Harald Sitter
  • Date: 2012-11-19 15:58:49 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20121119155849-l709sjsbjijx422a
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Harald Sitter ]
* Add libboost-python-dev as build dep to enable python script support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
   * dimension (both in radians).
46
46
   */
47
47
  AngleImp( const Coordinate& pt, double start_angle_in_radials,
48
 
            double angle_in_radials );
 
48
            double angle_in_radials, bool markRightAngle );
49
49
  ~AngleImp();
50
50
 
51
51
  ObjectImp* transform( const Transformation& ) const;
86
86
   */
87
87
  double angle() const { return mangle; }
88
88
 
 
89
  bool markRightAngle() const { return mmarkRightAngle; }
 
90
 
 
91
  void setMarkRightAngle( bool markRightAngle ) { mmarkRightAngle = markRightAngle; }
 
92
 
89
93
  bool equals( const ObjectImp& rhs ) const;
90
94
};
91
95