The DatumCsys object has no direct constructor; it is created when a Feature object is created. For example, the DatumCsysByOffset method creates a Feature object that creates a DatumCsys object.
The DatumCsys object is derived from the Datum object.
import part mdb.models[name].parts[name].datums[i] import assembly mdb.models[name].rootAssembly.allinstances.datums[i] mdb.models[name].rootAssembly.connectorOrientations[i].localCsys1 mdb.models[name].rootAssembly.connectorOrientations[i].localCsys2 mdb.models[name].rootAssembly.datums[i] mdb.models[name].rootAssembly.instances[name].datums[i] import odbAccess session.odbs[name].rootAssembly.connectorOrientations[i].localCsys1 session.odbs[name].rootAssembly.connectorOrientations[i].localCsys2
The DatumCsys object has the following members:
A SymbolicConstant specifying the type of the coordinate system. Possible values are CARTESIAN, CYLINDRICAL, and SPHERICAL.
A DatumPoint object specifying the origin of the coordinate system.
A DatumAxis object specifying the 1-direction of the coordinate system.
A DatumAxis object specifying the 2-direction of the coordinate system.
A DatumAxis object specifying the 3-direction of the coordinate system.