DrawOperation
Overview
DrawOperation is a class in Aspose.3D FOSS for Java.
DrawOperation enum provides rendering primitives such as POINTS, LINES, TRIANGLES, and others for low‑level drawing commands.
This class provides 2 methods for working with DrawOperation objects in Java programs.
Available methods include: valueOf, values.
All public members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Properties: LINES, LINE_STRIP, POINTS, TRIANGLES, TRIANGLE_FAN, TRIANGLE_STRIP.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
POINTS | DrawOperation | Read | Gets the points. |
LINES | DrawOperation | Read | Gets the lines. |
LINE_STRIP | DrawOperation | Read | Gets the line strip. |
TRIANGLES | DrawOperation | Read | Gets the triangles. |
TRIANGLE_STRIP | DrawOperation | Read | Gets the triangle strip. |
TRIANGLE_FAN | DrawOperation | Read | Gets the triangle fan. |
Methods
| Signature | Description |
|---|---|
valueOf(name: String) → DrawOperation | Calls valueOf(name) on this DrawOperation instance. |
values() → DrawOperation[] | Calls values on this DrawOperation instance. |