|
Cubit Python API 17.05
|
The base class of all the geometry and mesh types. More...
Public Member Functions |
|
| def | bounding_box (self) |
|
Returns the axis-aligned bounding box of the Entity. More... |
|
| def | center_point (self) |
|
Returns the geometric center point of the Entity. More... |
|
| def | id (self) |
|
Retrieves the unique identifier of the Entity. More... |
|
The base class of all the geometry and mesh types.
.. code-block:: python
| def bounding_box | ( | self | ) |
Returns the axis-aligned bounding box of the Entity .
Computes the minimum and maximum coordinates of the Entityxs geometry in X, Y, and Z directions.
.. code-block:: python
@n return type of : std:: array< double,6 >
| def center_point | ( | self | ) |
Returns the geometric center point of the Entity .
Computes the centroid of the Entityxs geometry based on its current position.
.. code-block:: python
@n return type of : std:: array< double,3 >
| def id | ( | self | ) |
Retrieves the unique identifier of the Entity .
Returns the integer ID assigned to the Entity upon creation.
.. code-block:: python
@n return type of : int