Open CASCADE Technology Reference Manual 8.0.0
Loading...
Searching...
No Matches
Public Member Functions
IMeshData_Model Class Referenceabstract

Interface class representing discrete model of a shape. More...

#include <IMeshData_Model.hxx>

Inheritance diagram for IMeshData_Model:
Inheritance graph
[legend]

Public Member Functions

 ~IMeshData_Model () override=default
 Destructor.
 
virtual double GetMaxSize () const =0
 Returns maximum size of shape model.
 
discrete faces

Returns number of faces in discrete model.

virtual int FacesNb () const =0
 Adds new face to shape model.
 
virtual const IMeshData::IFaceHandleAddFace (const TopoDS_Face &theFace)=0
 Adds new face to shape model.
 
virtual const IMeshData::IFaceHandleGetFace (const int theIndex) const =0
 Gets model's face with the given index.
 
- Public Member Functions inherited from IMeshData_Shape
 ~IMeshData_Shape () override=default
 Destructor.
 
void SetShape (const TopoDS_Shape &theShape)
 Assigns shape to discrete shape.
 
const TopoDS_ShapeGetShape () const
 Returns shape assigned to discrete shape.
 
- Public Member Functions inherited from Standard_Transient
 Standard_Transient ()
 Empty constructor.
 
 Standard_Transient (const Standard_Transient &)
 Copy constructor – does nothing.
 
Standard_Transientoperator= (const Standard_Transient &)
 Assignment operator, needed to avoid copying reference counter.
 
virtual ~Standard_Transient ()=default
 Destructor must be virtual.
 
virtual const opencascade::handle< Standard_Type > & DynamicType () const
 Returns a type descriptor about this object.
 
bool IsInstance (const opencascade::handle< Standard_Type > &theType) const
 Returns a true value if this is an instance of Type.
 
bool IsInstance (const char *const theTypeName) const
 Returns a true value if this is an instance of TypeName.
 
bool IsKind (const opencascade::handle< Standard_Type > &theType) const
 Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
bool IsKind (const char *const theTypeName) const
 Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
Standard_TransientThis () const
 Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
 
int GetRefCount () const noexcept
 Get the reference counter of this object.
 
void IncrementRefCounter () noexcept
 Increments the reference counter of this object. Uses relaxed memory ordering since incrementing only requires atomicity, not synchronization with other memory operations.
 
int DecrementRefCounter () noexcept
 Decrements the reference counter of this object; returns the decremented value. Uses release ordering for the decrement to ensure all writes to the object are visible before the count reaches zero. An acquire fence is added only when the count reaches zero, ensuring proper synchronization before deletion. This is more efficient than using acq_rel for every decrement.
 
virtual void Delete () const
 Memory deallocator for transient classes.
 

discrete edges

Returns number of edges in discrete model.

virtual int EdgesNb () const =0
 Adds new edge to shape model.
 
virtual const IMeshData::IEdgeHandleAddEdge (const TopoDS_Edge &theEdge)=0
 Adds new edge to shape model.
 
virtual const IMeshData::IEdgeHandleGetEdge (const int theIndex) const =0
 Gets model's edge with the given index.
 
 IMeshData_Model (const TopoDS_Shape &theShape)
 Constructor. Initializes empty model.
 

Additional Inherited Members

- Public Types inherited from Standard_Transient
typedef void base_type
 Returns a type descriptor about this object.
 
- Static Public Member Functions inherited from Standard_Transient
static constexpr const charget_type_name ()
 Returns a type descriptor about this object.
 
static const opencascade::handle< Standard_Type > & get_type_descriptor ()
 Returns type descriptor of Standard_Transient class.
 
- Protected Member Functions inherited from IMeshData_Shape
 IMeshData_Shape ()
 Constructor.
 
 IMeshData_Shape (const TopoDS_Shape &theShape)
 Constructor.
 

Detailed Description

Interface class representing discrete model of a shape.

Constructor & Destructor Documentation

◆ ~IMeshData_Model()

IMeshData_Model::~IMeshData_Model ( )
overridedefault

Destructor.

◆ IMeshData_Model()

IMeshData_Model::IMeshData_Model ( const TopoDS_Shape & theShape)
inlineprotected

Constructor. Initializes empty model.

Member Function Documentation

◆ AddEdge()

virtual const IMeshData::IEdgeHandle & IMeshData_Model::AddEdge ( const TopoDS_Edge & theEdge)
pure virtual

Adds new edge to shape model.

Implemented in BRepMeshData_Model.

◆ AddFace()

virtual const IMeshData::IFaceHandle & IMeshData_Model::AddFace ( const TopoDS_Face & theFace)
pure virtual

Adds new face to shape model.

Implemented in BRepMeshData_Model.

◆ EdgesNb()

virtual int IMeshData_Model::EdgesNb ( ) const
pure virtual

Adds new edge to shape model.

Implemented in BRepMeshData_Model.

◆ FacesNb()

virtual int IMeshData_Model::FacesNb ( ) const
pure virtual

Adds new face to shape model.

Implemented in BRepMeshData_Model.

◆ GetEdge()

virtual const IMeshData::IEdgeHandle & IMeshData_Model::GetEdge ( const int theIndex) const
pure virtual

Gets model's edge with the given index.

Implemented in BRepMeshData_Model.

◆ GetFace()

virtual const IMeshData::IFaceHandle & IMeshData_Model::GetFace ( const int theIndex) const
pure virtual

Gets model's face with the given index.

Implemented in BRepMeshData_Model.

◆ GetMaxSize()

virtual double IMeshData_Model::GetMaxSize ( ) const
pure virtual

Returns maximum size of shape model.

Implemented in BRepMeshData_Model.


The documentation for this class was generated from the following file: