CoordinateSystem
#
- class ansys.geometry.core.designer.coordinate_system.CoordinateSystem(name: str, frame: ansys.geometry.core.math.frame.Frame, parent_component: ansys.geometry.core.designer.component.Component, grpc_client: ansys.geometry.core.connection.client.GrpcClient, preexisting_id: str | None = None)#
Represents a user-defined coordinate system within the design assembly.
This class synchronizes to a design within a supporting Geometry service instance.
- Parameters:
- name
str
User-defined label for the coordinate system.
- frame
Frame
Frame defining the coordinate system bounds.
- parent_component
Component
, default:Component
Parent component the coordinate system is assigned against.
- grpc_client
GrpcClient
Active supporting Geometry service instance for design modeling.
- name
Overview#
ID of the coordinate system. |
|
Name of the coordinate system. |
|
Frame of the coordinate system. |
|
Parent component of the coordinate system. |
|
Flag indicating if coordinate system is still alive on the server. |
Represent the coordinate system as a string. |
Import detail#
from ansys.geometry.core.designer.coordinate_system import CoordinateSystem
Property detail#
- property CoordinateSystem.frame: ansys.geometry.core.math.frame.Frame#
Frame of the coordinate system.
- property CoordinateSystem.parent_component: ansys.geometry.core.designer.component.Component#
Parent component of the coordinate system.
Attribute detail#
- CoordinateSystem.new_coordinate_system#