Package com.aspose.threed
Enum PdfRenderMode
- java.lang.Object
-
- java.lang.Enum<PdfRenderMode>
-
- com.aspose.threed.PdfRenderMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PdfRenderMode>
public enum PdfRenderMode extends java.lang.Enum<PdfRenderMode>
Render mode specifies the style in which the 3D artwork is rendered.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOUNDING_BOX
Displays the bounding box edges of each node, aligned with the axes of the local coordinate space for that node.HIDDEN_WIREFRAME
Displays edges in a single color, though removes back-facing and obscured edges.ILLUSTRATION
Displays silhouette edges with surfaces, removes obscured lines.SHADED_ILLUSTRATION
Displays silhouette edges with lit and textured surfaces and an additional emissive term to remove poorly lit areas of the artwork.SHADED_VERTICES
Displays only vertices, though uses their vertex color and applies lighting.SHADED_WIREFRAME
Displays only edges, though interpolates their color between their two vertices and applies lighting.SOLID
Displays textured and lit geometric shapes.SOLID_OUTLINE
Displays silhouette edges with lit and textured surfaces, removes obscured lines.SOLID_WIREFRAME
Displays textured and lit geometric shapes (triangles) with single color edges on top of them.TRANSPARENT
Displays textured and lit geometric shapes (triangles) with an added level of transparency.TRANSPARENT_BOUNDING_BOX
Displays bounding boxes faces of each node, aligned with the axes of the local coordinate space for that node, with an added level of transparency.TRANSPARENT_BOUNDING_BOX_OUTLINE
Displays bounding boxes edges and faces of each node, aligned with the axes of the local coordinate space for that node, with an added level of transparency.TRANSPARENT_WIREFRAME
Displays textured and lit geometric shapes (triangles) with an added level of transparency, with single color opaque edges on top of it.VERTICES
Displays only vertices in a single color.WIREFRAME
Displays only edges in a single color.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PdfRenderMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PdfRenderMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLID
public static final PdfRenderMode SOLID
Displays textured and lit geometric shapes.
-
SOLID_WIREFRAME
public static final PdfRenderMode SOLID_WIREFRAME
Displays textured and lit geometric shapes (triangles) with single color edges on top of them.
-
TRANSPARENT
public static final PdfRenderMode TRANSPARENT
Displays textured and lit geometric shapes (triangles) with an added level of transparency.
-
TRANSPARENT_WIREFRAME
public static final PdfRenderMode TRANSPARENT_WIREFRAME
Displays textured and lit geometric shapes (triangles) with an added level of transparency, with single color opaque edges on top of it.
-
BOUNDING_BOX
public static final PdfRenderMode BOUNDING_BOX
Displays the bounding box edges of each node, aligned with the axes of the local coordinate space for that node.
-
TRANSPARENT_BOUNDING_BOX
public static final PdfRenderMode TRANSPARENT_BOUNDING_BOX
Displays bounding boxes faces of each node, aligned with the axes of the local coordinate space for that node, with an added level of transparency.
-
TRANSPARENT_BOUNDING_BOX_OUTLINE
public static final PdfRenderMode TRANSPARENT_BOUNDING_BOX_OUTLINE
Displays bounding boxes edges and faces of each node, aligned with the axes of the local coordinate space for that node, with an added level of transparency.
-
WIREFRAME
public static final PdfRenderMode WIREFRAME
Displays only edges in a single color.
-
SHADED_WIREFRAME
public static final PdfRenderMode SHADED_WIREFRAME
Displays only edges, though interpolates their color between their two vertices and applies lighting.
-
HIDDEN_WIREFRAME
public static final PdfRenderMode HIDDEN_WIREFRAME
Displays edges in a single color, though removes back-facing and obscured edges.
-
VERTICES
public static final PdfRenderMode VERTICES
Displays only vertices in a single color.
-
SHADED_VERTICES
public static final PdfRenderMode SHADED_VERTICES
Displays only vertices, though uses their vertex color and applies lighting.
-
ILLUSTRATION
public static final PdfRenderMode ILLUSTRATION
Displays silhouette edges with surfaces, removes obscured lines.
-
SOLID_OUTLINE
public static final PdfRenderMode SOLID_OUTLINE
Displays silhouette edges with lit and textured surfaces, removes obscured lines.
-
SHADED_ILLUSTRATION
public static final PdfRenderMode SHADED_ILLUSTRATION
Displays silhouette edges with lit and textured surfaces and an additional emissive term to remove poorly lit areas of the artwork.
-
-
Method Detail
-
values
public static PdfRenderMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PdfRenderMode c : PdfRenderMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfRenderMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-