org.gnu.gdk
public class CapStyle extends Enum
Field Summary | |
---|---|
static CapStyle | BUTT
The ends of the lines are drawn squared off and extending to the
coordinates of the end point. |
static CapStyle | NOT_LAST
The same as BUTT for lines of non-zero width. |
static CapStyle | PROJECTING
The ends of the lines are drawn squared off and extending half the width
of the line beyond the end point. |
static CapStyle | ROUND
The ends of the lines are drawn as semicircles with the diameter equal to
the line width and centered at the end point. |
Method Summary | |
---|---|
CapStyle | and(CapStyle other) |
static CapStyle | intern(int value) |
CapStyle | or(CapStyle other) |
boolean | test(CapStyle other) |
CapStyle | xor(CapStyle other) |
Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
The ends of the lines are drawn squared off and extending to the coordinates of the end point.Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
The same as BUTT for lines of non-zero width. For zero width lines, the final point on the line will not be drawn.Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
The ends of the lines are drawn squared off and extending half the width of the line beyond the end point.Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
The ends of the lines are drawn as semicircles with the diameter equal to the line width and centered at the end point.