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

Defines a PMI graphical element. More...

#include <cadex/ModelData_PMIGraphicalElement.hxx>

Inheritance diagram for cadex::ModelData_PMIGraphicalElement:
cadex::ModelData_BaseObject

Classes

class  ComponentIterator
 Iterator over added components. More...
 

Public Types

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

Public Member Functions

 ModelData_PMIGraphicalElement ()
 Constructor.
 
 ModelData_PMIGraphicalElement (initialized)
 Constructor.
 
 ModelData_PMIGraphicalElement (ImplType *theImpl)
 Constructor (reserved for internal use).
 
void SetPlane (const ModelData_PMIPlane &thePlane)
 
ModelData_PMIPlane Plane () const
 
void AddComponent (const ModelData_PMIGraphicalElementComponent &theComponent)
 Adds a component.
 
bool IsEmpty () const
 Returns true if no graphical element components were added.
 
size_t NumberOfComponents () const
 Returns number of added components.
 
void Accept (ModelData_PMIGraphicalElementComponentVisitor &theVisitor) const
 Accepts the visitor.
 
- 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_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

Defines a PMI graphical element.

An element contains a graphical presentation of PMI entity such as dimension or tolerance measurement.

The information to be presented can be stored in different ways: outlines, text or triangulation. There is a ModelData_PMIGraphicalElementComponent subclass for each presentation mechanism. An element contains any number of components and plane.

See also
ModelData_PMITable, ModelData_PMIData, ModelData_PMIGraphicalElementComponent
Examples
exploring/pmi/Program.cs, and exploring/pmi/main.cxx.

Constructor & Destructor Documentation

◆ ModelData_PMIGraphicalElement() [1/2]

cadex::ModelData_PMIGraphicalElement::ModelData_PMIGraphicalElement ( )

Constructor.

Creates uninitialized object, for which IsNull() returns true.

◆ ModelData_PMIGraphicalElement() [2/2]

cadex::ModelData_PMIGraphicalElement::ModelData_PMIGraphicalElement ( initialized  )
explicit

Constructor.

Creates initialized object, for which IsNull() returns false.

Member Function Documentation

◆ Accept()

void cadex::ModelData_PMIGraphicalElement::Accept ( ModelData_PMIGraphicalElementComponentVisitor theVisitor) const

Accepts the visitor.

The components are visited in the order in which they were added with the AddComponent() method.

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

◆ IsEmpty()

bool cadex::ModelData_PMIGraphicalElement::IsEmpty ( ) const

Returns true if no graphical element components were added.

Returns true if IsNull().

See also
AddComponent(), NumberOfComponents()

◆ NumberOfComponents()

size_t cadex::ModelData_PMIGraphicalElement::NumberOfComponents ( ) const

Returns number of added components.

Returns 0 if IsNull().

See also
AddComponent()