Enum Geometry.Type
Definition
- Assembly:
- Tizen.NUI.dll
Enumeration for the description of the type of geometry, used to determine how the coordinates will be used.
public enum Geometry.Type
Fields
| Name | Description |
|---|---|
| LINE_LOOP | A strip of lines (made of 1 point each) which also joins the first and last point. |
| LINE_STRIP | A strip of lines (made of 1 point each). |
| LINES | Individual lines (made of 2 points each). |
| POINTS | Individual points. |
| TRIANGLE_FAN | A fan of triangles around a centre point (after the first triangle, following triangles need only 1 point). |
| TRIANGLE_STRIP | A strip of triangles (after the first triangle, following triangles need only 1 point). |
| TRIANGLES | Individual triangles (made of 3 points each). |