Example usage for Java javax.media.j3d LineAttributes fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_WIDTH_WRITE Specifies that this LineAttributes object allows writing its line width information. |
int | ALLOW_PATTERN_WRITE Specifies that this LineAttributes object allows writing its line pattern information. |
int | ALLOW_ANTIALIASING_WRITE Specifies that this LineAttributes object allows writing its line antialiasing flag. |
int | PATTERN_SOLID Draw solid lines with no pattern. |
int | PATTERN_DASH Draw dashed lines. |
int | PATTERN_DOT Draw dotted lines. |
int | PATTERN_DASH_DOT Draw dashed-dotted lines. |
LineAttributes() Constructs a LineAttributes object with default parameters. | |
LineAttributes(float lineWidth, int linePattern, boolean lineAntialiasing) Constructs a LineAttributes object with specified values. |
void | setLinePattern(int linePattern) Sets the line pattern for this LineAttributes component object. |
void | setLineWidth(float lineWidth) Sets the line width for this LineAttributes component object. |