Enum PrimitiveType
Enumerates geometric primitive types.
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
[Flags]
public enum PrimitiveType
Fields
| Name | Description |
|---|---|
| Line | Line primitive. This is a line defined through a start and an end position. A face contains exactly two indices for such a primitive. |
| Point | Point primitive. This is just a single vertex in the virtual world. A face has one index for such a primitive. |
| Polygon | A n-Gon that has more than three edges (thus is not a triangle). |
| Triangle | Triangle primitive, consisting of three indices. |