public interface OutlineConsumer
| Modifier and Type | Method and Description |
|---|---|
void |
curveto(double x2,
double y2,
double x3,
double y3)
Called for a quadratic curve.
|
void |
curveto(double x2,
double y2,
double x3,
double y3,
double x4,
double y4)
Called for a cubic curve.
|
void |
endchar()
Called to signal the end of a glyph's outline.
|
void |
lineto(double x,
double y)
Called for a line.
|
void |
moveto(double x,
double y)
Called to set a new currentpoint.
|
void |
setMatrix(Matrix newMatrix)
Tells the OutlineConsumer the matrix to be applied to subsequent
points in order to get to a 1 ppem size.
|
void setMatrix(Matrix newMatrix)
newMatrix - void moveto(double x,
double y)
x - the x coordinate of the new currentpointy - the y coordinate of the new currentpointvoid lineto(double x,
double y)
x, y). After this call, the currentpoint
should be x,yvoid curveto(double x2,
double y2,
double x3,
double y3,
double x4,
double y4)
x2, y2),
(x3, y3),
(x4, y4). After this call, the
currentpoint should be x4, y4.void curveto(double x2,
double y2,
double x3,
double y3)
x2, y2),
(x3, y3). After this call, the
currentpoint should be x3, y3.void endchar()
Copyright © 2010 - 2020 Adobe. All Rights Reserved