Class ObjConstants
java.lang.Object
org.apache.commons.geometry.io.euclidean.threed.obj.ObjConstants
Class containing constants for use with OBJ files.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final char
Character used to indicate the start of a comment line.static final Charset
Default OBJ charset.static final String
Keyword used to indicate a face definition line.static final char
Character used to separate face vertex attribute indices.static final String
Keyword used to indicate a geometry group.static final char
Character placed before new line sequences to indicate a line continuation.static final String
Keyword used to reference a material library file.static final String
Keyword used to associate a name with the following geometry.static final String
Keyword used to indicate a geometry group.static final String
Keyword used to indicate a texture coordinate definition line.static final String
Keyword used to apply a named material to subsequent geometry.static final String
Keyword used to indicate a vertex definition line.static final String
Keyword used to indicate a vertex normal definition line. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
DEFAULT_CHARSET
Default OBJ charset. -
COMMENT_CHAR
public static final char COMMENT_CHARCharacter used to indicate the start of a comment line.- See Also:
-
LINE_CONTINUATION_CHAR
public static final char LINE_CONTINUATION_CHARCharacter placed before new line sequences to indicate a line continuation.- See Also:
-
VERTEX_KEYWORD
Keyword used to indicate a vertex definition line.- See Also:
-
VERTEX_NORMAL_KEYWORD
Keyword used to indicate a vertex normal definition line.- See Also:
-
TEXTURE_COORDINATE_KEYWORD
Keyword used to indicate a texture coordinate definition line.- See Also:
-
FACE_KEYWORD
Keyword used to indicate a face definition line.- See Also:
-
FACE_VERTEX_ATTRIBUTE_SEP_CHAR
public static final char FACE_VERTEX_ATTRIBUTE_SEP_CHARCharacter used to separate face vertex attribute indices.- See Also:
-
GROUP_KEYWORD
Keyword used to indicate a geometry group.- See Also:
-
SMOOTHING_GROUP_KEYWORD
Keyword used to indicate a geometry group.- See Also:
-
OBJECT_KEYWORD
Keyword used to associate a name with the following geometry.- See Also:
-
MATERIAL_LIBRARY_KEYWORD
Keyword used to reference a material library file.- See Also:
-
USE_MATERIAL_KEYWORD
Keyword used to apply a named material to subsequent geometry.- See Also:
-
-
Constructor Details
-
ObjConstants
private ObjConstants()Utility class; no instantiation.
-