VehicleGraphics3DBPlanePointCollection#

class ansys.stk.core.stkobjects.VehicleGraphics3DBPlanePointCollection#

VehicleGraphics3DBPlanePointCollection Class.

Overview#

item

Given an index, returns an element in the collection.

remove_at

Remove an element from the collection using specified index.

remove_all

Remove all elements from the collection.

add

Add a new element to the collection.

count

Return the number of elements in a collection.

_new_enum

Return an enumerator that can iterate through the collection.

point_color

Whether to display the first point in the same color as the other points.

first_point_color

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.

property VehicleGraphics3DBPlanePointCollection.point_color: Color#

Whether to display the first point in the same color as the other points.

property VehicleGraphics3DBPlanePointCollection.first_point_color: Color#

Get or set the specified color of the first point, if different from the others.

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.

Parameters:

index : int

Returns:

None

VehicleGraphics3DBPlanePointCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

VehicleGraphics3DBPlanePointCollection.add(self) VehicleGraphics3DBPlanePoint#

Add a new element to the collection.

Returns:

VehicleGraphics3DBPlanePoint