DesignPoint#

class ansys.geometry.core.designer.designpoint.DesignPoint(id: str, name: str, point: ansys.geometry.core.math.point.Point3D, parent_component: ansys.geometry.core.designer.component.Component)#

Provides for creating design points in components.

Parameters:
idstr

Server-defined ID for the design points.

namestr

User-defined label for the design points.

pointsPoint3D

3D point constituting the design points.

parent_componentComponent

Parent component to place the new design point under within the design assembly.

Overview#

id

ID of the design point.

name

Name of the design point.

value

Value of the design point.

parent_component

Component node that the design point is under.

__repr__

Represent the design points as a string.

Import detail#

from ansys.geometry.core.designer.designpoint import DesignPoint

Property detail#

property DesignPoint.id: str#

ID of the design point.

property DesignPoint.name: str#

Name of the design point.

property DesignPoint.value: ansys.geometry.core.math.point.Point3D#

Value of the design point.

property DesignPoint.parent_component: beartype.typing.Union[ansys.geometry.core.designer.component.Component, None]#

Component node that the design point is under.

Method detail#

DesignPoint.__repr__() str#

Represent the design points as a string.