change_cs_mode#
- CoordinateSystem.change_cs_mode(mode_type: int = 0) bool#
Change the mode of the coordinate system.
- Parameters:
- mode_type
int,optional Type of the mode. Options are:
0- Axis/Position1- Euler Angle ZXZ2- Euler Angle ZYZ
The default is
0.
- mode_type
- Returns:
- bool
Truewhen successful,Falsewhen failed.
Examples
>>> from ansys.aedt.core.modeler.cad.modeler import CoordinateSystem >>> obj = CoordinateSystem() >>> obj.change_cs_mode(mode_type=1)