Package ch.bailu.gtk.gsk
Schnittstelle PathOperation
public interface PathOperation
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
A close operation ending the current contour with a line back
to the starting point.static final int
A rational quadratic Bézier curve with 3 points describing
the start point, control point and end point of the curve.static final int
A curve-to operation describing a cubic Bézier curve with 4
points describing the start point, the two control points and the end point
of the curve.static final int
A line-to operation, with 2 points describing the start and
end point of a straight line.static final int
A move-to operation, with 1 point describing the target point.static final int
A curve-to operation describing a quadratic Bézier curve
with 3 points describing the start point, the control point and the end
point of the curve.
-
Felddetails
-
MOVE
static final int MOVEA move-to operation, with 1 point describing the target point.- Siehe auch:
-
CLOSE
static final int CLOSEA close operation ending the current contour with a line back
to the starting point. Two points describe the start and end of the line.- Siehe auch:
-
LINE
static final int LINEA line-to operation, with 2 points describing the start and
end point of a straight line.- Siehe auch:
-
QUAD
static final int QUADA curve-to operation describing a quadratic Bézier curve
with 3 points describing the start point, the control point and the end
point of the curve.- Siehe auch:
-
CUBIC
static final int CUBICA curve-to operation describing a cubic Bézier curve with 4
points describing the start point, the two control points and the end point
of the curve.- Siehe auch:
-
CONIC
static final int CONICA rational quadratic Bézier curve with 3 points describing
the start point, control point and end point of the curve. A weight for the
curve will be passed, too.- Siehe auch:
-