Hide menu
Loading...
Searching...
No Matches
cadex::ModelData_DrawingPiecewiseContour Class Reference

Describes drawing elements composed connected 2D curves. More...

#include <cadex/ModelData_DrawingGeometry.hxx>

Inheritance diagram for cadex::ModelData_DrawingPiecewiseContour:
cadex::ModelData_DrawingGeometry cadex::ModelData_DrawingElement cadex::ModelData_BaseObject

Public Types

typedef cadex::internal::ModelData_DrawingPiecewiseContourImpl ImplType
 
- Public Types inherited from cadex::ModelData_BaseObject
typedef int IdType
 Defines a type identifier.
 

Public Member Functions

 ModelData_DrawingPiecewiseContour ()
 Constructor.
 
 ModelData_DrawingPiecewiseContour (ImplType *)
 Constructor. Reserved for internal use.
 
bool IsClosed () const
 Returns true if the contour is closed.
 
bool AddCurve (const ModelData_TrimmedCurve2d &theCurve)
 Adds a trimmed curve to the element.
 
bool AddCurve (const ModelData_BSplineCurve2d &theCurve)
 Adds a B-spline curve to the element.
 
size_t NumberOfCurves () const
 Returns the number of curves currently composing the element.
 
const ModelData_Curve2dCurve (size_t theIndex) const
 Returns the specified curve of the element.
 
- Public Member Functions inherited from cadex::ModelData_DrawingElement
void Accept (ModelData_DrawingElementVisitor &theVisitor) const
 
- Public Member Functions inherited from cadex::ModelData_BaseObject
 ModelData_BaseObject ()
 Constructor.
 
IdType TypeId () const
 Returns an object type id.
 
template<typename T >
bool IsOfType () const
 Returns true if the object has a type T.
 
void SetName (const Base_UTF16String &theName)
 Sets an object name.
 
Base_UTF16String Name () const
 
void SetUuid (const Base_Uuid &theUuid)
 
Base_Uuid Uuid () const
 
void Nullify ()
 Resets reference to implementation object.
 
bool IsNull () const
 Returns true if the object is nullified.
 
 operator bool () const
 Casts the object to the bool type.
 
internal::ModelData_BaseObjectImpl * Impl () const
 Return a handle to backend (reserved for internal use).
 

Static Public Member Functions

static IdType GetTypeId ()
 

Additional Inherited Members

- Protected Member Functions inherited from cadex::ModelData_DrawingGeometry
 ModelData_DrawingGeometry (internal::ModelData_DrawingGeometryImpl *theImpl)
 Constructor. Reserved for internal use.
 
- Protected Member Functions inherited from cadex::ModelData_DrawingElement
 ModelData_DrawingElement (internal::ModelData_DrawingElementImpl *theImpl)
 Constructor.
 
- Protected Member Functions inherited from cadex::ModelData_BaseObject
 ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl)
 Constructor (reserved for internal use).
 
 ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl, const Base_UTF16String &theName)
 Constructor (reserved for internal use).
 
template<typename T >
T * GetOrCreateImpl ()
 Reserved for internal use.
 

Detailed Description

Describes drawing elements composed connected 2D curves.

Restriction - can only contain ModelData_TrimmedCurve2d and ModelData_BSplineCurve2d.

Examples
exploring/drawings/Program.cs, and exploring/drawings/main.cxx.