Source code for abaqus.Datum.DatumPoint
from .Datum import Datum
[docs]class DatumPoint(Datum):
"""The DatumPoint object has no direct constructor; it is created when a Feature object is
created. For example, the DatumPointByCoordinate method creates a Feature object that
creates a DatumPoint object.
The DatumPoint object is derived from the Datum object.
Attributes
----------
pointOn: float
A tuple of Floats specifying the **X**-, **Y**-, and **Z**-coordinates of a point located on
the datum.
Notes
-----
This object can be accessed by:
.. code-block:: python
import part
mdb.models[name].parts[name].datums[i]
import assembly
mdb.models[name].rootAssembly.allInstances[name].datums[i]
mdb.models[name].rootAssembly.datums[i]
mdb.models[name].rootAssembly.instances[name].datums[i]
"""
# A tuple of Floats specifying the *X*-, *Y*-, and *Z*-coordinates of a point located on
# the datum.
pointOn: float = None