DrawOperation

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

NameTypeAccessDescription
POINTSDrawOperationReadGets the points.
LINESDrawOperationReadGets the lines.
LINE_STRIPDrawOperationReadGets the line strip.
TRIANGLESDrawOperationReadGets the triangles.
TRIANGLE_STRIPDrawOperationReadGets the triangle strip.
TRIANGLE_FANDrawOperationReadGets the triangle fan.

Methods

SignatureDescription
valueOf(name: String)DrawOperationCalls valueOf(name) on this DrawOperation instance.
values()DrawOperation[]Calls values on this DrawOperation instance.

See Also