VectorGeometryToolPointGroup#
- class ansys.stk.core.analysis_workbench.VectorGeometryToolPointGroup#
Access or create VGT points associated with an object or a central body.
Overview#
Remove a specified point by name. |
|
Search for a an element with a given name. Returns false if the specified element does not exist. |
|
Return a point by name or at a specified position. |
|
Retrieve a point from the collection by index. |
|
Retrieve a point from the collection by name. |
Return a context object. The context can be used to find out which central body or STK object this instance is associated with. |
|
Return a number of elements in the group. |
|
Return a Factory object used to create custom points. |
|
Return a COM enumerator. |
|
Provide access to common tasks that allow users quickly carry out tasks such as creating known point types, etc. |
Import detail#
from ansys.stk.core.analysis_workbench import VectorGeometryToolPointGroup
Property detail#
- property VectorGeometryToolPointGroup.context: IAnalysisWorkbenchComponentContext#
Return a context object. The context can be used to find out which central body or STK object this instance is associated with.
- property VectorGeometryToolPointGroup.factory: VectorGeometryToolPointFactory#
Return a Factory object used to create custom points.
- property VectorGeometryToolPointGroup._new_enum: EnumeratorProxy#
Return a COM enumerator.
- property VectorGeometryToolPointGroup.common_tasks: VectorGeometryToolPointCommonTasks#
Provide access to common tasks that allow users quickly carry out tasks such as creating known point types, etc.
Method detail#
- VectorGeometryToolPointGroup.contains(self, name: str) bool #
Search for a an element with a given name. Returns false if the specified element does not exist.
- VectorGeometryToolPointGroup.item(self, index_or_name: Any) IVectorGeometryToolPoint #
Return a point by name or at a specified position.
- Parameters:
index_or_name :
Any
- Returns:
IVectorGeometryToolPoint
- VectorGeometryToolPointGroup.get_item_by_index(self, index: int) IVectorGeometryToolPoint #
Retrieve a point from the collection by index.
- Parameters:
index :
int
- Returns:
IVectorGeometryToolPoint
- VectorGeometryToolPointGroup.get_item_by_name(self, name: str) IVectorGeometryToolPoint #
Retrieve a point from the collection by name.
- Parameters:
name :
str
- Returns:
IVectorGeometryToolPoint