Tileset3DCollection#

class ansys.stk.core.stkobjects.Tileset3DCollection#

Collection of 3DTilesets available in the Scenario for analysis.

Overview#

item

Given an index, returns an Tileset3D interface.

add

Add a 3DTileset item to the collection.

remove

Remove a given index from the collection.

remove_all

Remove all items from the collections.

count

Get the number of items in the collection.

_new_enum

Enumerates through the collection.

Import detail#

from ansys.stk.core.stkobjects import Tileset3DCollection

Property detail#

property Tileset3DCollection.count: int#

Get the number of items in the collection.

property Tileset3DCollection._new_enum: EnumeratorProxy#

Enumerates through the collection.

Method detail#

Tileset3DCollection.item(self, index: int) Tileset3D#

Given an index, returns an Tileset3D interface.

Parameters:

index : int

Returns:

Tileset3D

Tileset3DCollection.add(self, name: str, uri: str, source_type: Tileset3DSourceType, reference_frame: str) Tileset3D#

Add a 3DTileset item to the collection.

Parameters:

name : str

uri : str

source_type : Tileset3DSourceType

reference_frame : str

Returns:

Tileset3D

Tileset3DCollection.remove(self, index: int) None#

Remove a given index from the collection.

Parameters:

index : int

Returns:

None

Tileset3DCollection.remove_all(self) None#

Remove all items from the collections.

Returns:

None