VertexElement

VertexElement

Overview

VertexElement is a class in Aspose.3D FOSS for Java.

VertexElement.getType returns the element’s data type.

Properties

NameTypeAccessDescription
typeVertexElementTypeReadRepresents the data type of the vertex element
mappingModeMappingModeReadRepresents the mapping mode of the vertex element
referenceModeReferenceModeReadRepresents the reference mode of the vertex element
indicesList<Integer>ReadHolds the list of index values for the element
dataList<Object>ReadHolds the list of data objects stored in the element

Methods

SignatureDescription
getType()VertexElementTypeReturns the element’s data type
getMappingMode()MappingModeReturns the element’s mapping mode
getReferenceMode()ReferenceModeReturns the element’s reference mode
getIndices()List<Integer>Returns the list of index values
getData()List<Object>Returns the list of stored data objects
setData(data: List<Object>)Replaces the element’s data with the given list
setIndices(indices: List<Integer>)Sets the element’s index list to the provided values
clone()VertexElementCreates a deep copy of this VertexElement

See Also