VehicleGraphics3DBPlanePointCollection#
- class ansys.stk.core.stkobjects.VehicleGraphics3DBPlanePointCollection#
VehicleGraphics3DBPlanePointCollection Class.
Overview#
Given an index, returns an element in the collection. |
|
Remove an element from the collection using specified index. |
|
Remove all elements from the collection. |
|
Add a new element to the collection. |
Return the number of elements in a collection. |
|
Return an enumerator that can iterate through the collection. |
|
Whether to display the first point in the same color as the other points. |
|
Get or set the specified color of the first point, if different from the others. |
Import detail#
from ansys.stk.core.stkobjects import VehicleGraphics3DBPlanePointCollection
Property detail#
- property VehicleGraphics3DBPlanePointCollection.count: int#
Return the number of elements in a collection.
- property VehicleGraphics3DBPlanePointCollection._new_enum: EnumeratorProxy#
Return an enumerator that can iterate through the collection.
Method detail#
- VehicleGraphics3DBPlanePointCollection.item(self, index: int) VehicleGraphics3DBPlanePoint #
Given an index, returns an element in the collection.
- Parameters:
index :
int
- Returns:
VehicleGraphics3DBPlanePoint
- VehicleGraphics3DBPlanePointCollection.remove_at(self, index: int) None #
Remove an element from the collection using specified index.
- VehicleGraphics3DBPlanePointCollection.remove_all(self) None #
Remove all elements from the collection.
- Returns:
- VehicleGraphics3DBPlanePointCollection.add(self) VehicleGraphics3DBPlanePoint #
Add a new element to the collection.
- Returns:
VehicleGraphics3DBPlanePoint