MutablePolygon
A mutable implementation of the IPolygon interface that represents a polygon in 3D space. This class allows modification of the polygon's attributes such as vertex positions, texture coordinates, colors, normals, tangents, and bitangents.
Constructors
Creates a mutable polygon with optional initial values for positions, texture coordinates, colors, normals, tangents, and bitangents. If no initial values are provided, empty mutable lists are used.
Properties
The mutable list of bitangent vectors for the polygon vertices, represented as Vector3.
The mutable list of color values for the polygon vertices, represented as ColorRGBa.
The mutable list of normal vectors for the polygon vertices, represented as Vector3.
The mutable list of 3D positions of the polygon vertices, represented as Vector3.
The mutable list of tangent vectors for the polygon vertices, represented as Vector3.
The mutable list of 2D texture coordinates for the polygon vertices, represented as Vector2.