MappingMode Enumeration
Determines how the element is mapped to a surface. The MappingMode defined how VertexElement is mapped to the surface of geometry.

Namespace: Aspose.ThreeD.Entities
Assembly: Aspose.3D (in Aspose.3D.dll) Version: 20.3.0.0 (20.3)
Syntax
public enum MappingMode
Members
  Member nameValueDescription
ControlPoint0 Each data is mapped to the control point of the geometry.
PolygonVertex1 The data is mapped to the polygon's vertex When a control point is shared by multiple polygons, and the data is mapped as PolygonVertex, the control point as different polygon vertex will have their own data
Polygon2 The data is mapped to the polygon. Each polygon vertex shares the same data when mapping mode is Polygon.
Edge3 The data is mapped to the edge. Each edge end point shares the same data when mapping is Edge.
AllSame4 One data mapped to the whole surface. What ever data is interpreted as control point/polygon vertex/edge endpoints, the data is always the same as it defined by AllSame.
See Also