public enum PdfRenderMode extends java.lang.Enum<PdfRenderMode>
Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final PdfRenderMode SOLID
public static final PdfRenderMode SOLID_WIREFRAME
public static final PdfRenderMode TRANSPARENT
public static final PdfRenderMode TRANSPARENT_WIREFRAME
public static final PdfRenderMode BOUNDING_BOX
public static final PdfRenderMode TRANSPARENT_BOUNDING_BOX
public static final PdfRenderMode TRANSPARENT_BOUNDING_BOX_OUTLINE
public static final PdfRenderMode WIREFRAME
public static final PdfRenderMode SHADED_WIREFRAME
public static final PdfRenderMode HIDDEN_WIREFRAME
public static final PdfRenderMode VERTICES
public static final PdfRenderMode SHADED_VERTICES
public static final PdfRenderMode ILLUSTRATION
public static final PdfRenderMode SOLID_OUTLINE
public static final PdfRenderMode SHADED_ILLUSTRATION
public static PdfRenderMode[] values()
for (PdfRenderMode c : PdfRenderMode.values()) System.out.println(c);
public static PdfRenderMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null