global_to_cs#
- Modeler2D.global_to_cs(point: list, coordinate_system: str | CoordinateSystem) list#
Transform a point from the global coordinate system to another coordinate system.
- Parameters:
- Returns:
listList of the transformed
[x, y, z]coordinates.
Examples
>>> from ansys.aedt.core.modeler.cad.primitives import GeometryModeler >>> obj = GeometryModeler() >>> obj.global_to_cs(point=[1, 0, 0], coordinate_system="Global")