Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/stroke/Curve.h
| Show First 20 Lines • Show All 230 Lines • ▼ Show 20 Lines | public: | ||||
| /*! Copy Constructor. */ | /*! Copy Constructor. */ | ||||
| CurvePoint(const CurvePoint &iBrother); | CurvePoint(const CurvePoint &iBrother); | ||||
| /*! Operator = */ | /*! Operator = */ | ||||
| CurvePoint &operator=(const CurvePoint &iBrother); | CurvePoint &operator=(const CurvePoint &iBrother); | ||||
| /*! Destructor */ | /*! Destructor */ | ||||
| virtual ~CurvePoint() | virtual ~CurvePoint() = default; | ||||
| { | |||||
| } | |||||
| /*! Operator == */ | /*! Operator == */ | ||||
| bool operator==(const CurvePoint &b) | bool operator==(const CurvePoint &b) | ||||
| { | { | ||||
| return ((__A == b.__A) && (__B == b.__B) && (_t2d == b._t2d)); | return ((__A == b.__A) && (__B == b.__B) && (_t2d == b._t2d)); | ||||
| } | } | ||||
| /* accessors */ | /* accessors */ | ||||
| ▲ Show 20 Lines • Show All 356 Lines • Show Last 20 Lines | |||||