Enum PrimitiveType
Definition
- Assembly:
- Tizen.NUI.dll
Enumeration for the description of the type of primitive mesh, used to determine how the coordinates will be used.
public enum PrimitiveType
Fields
| Name | Description |
|---|---|
| LineLoop | A strip of lines (made of 1 point each) which also joins the first and last point. |
| Lines | Individual lines (made of 2 points each). |
| LineStrip | A strip of lines (made of 1 point each). |
| Points | Individual points. |
| TriangleFan | A fan of triangles around a centre point (after the first triangle, following triangles need only 1 point). |
| Triangles | Individual triangles (made of 3 points each). |
| TriangleStrip | A strip of triangles (after the first triangle, following triangles need only 1 point). |