org.apache.batik.dom.svg
public class SVGOMPoint extends Object implements SVGPoint
Field Summary | |
---|---|
protected float | x
The x coordinate. |
protected float | y
The y coordinate. |
Constructor Summary | |
---|---|
SVGOMPoint()
Creates a new SVGOMPoint with coordinates set to 0 . | |
SVGOMPoint(float x, float y)
Creates a new SVGOMPoint with coordinates set to the specified values. |
Method Summary | |
---|---|
float | getX()
DOM: Implements {@link SVGPoint#getX()}. |
float | getY()
DOM: Implements {@link SVGPoint#getY()}. |
SVGPoint | matrixTransform(SVGMatrix matrix)
DOM: Implements {@link SVGPoint#matrixTransform(SVGMatrix)}. |
static SVGPoint | matrixTransform(SVGPoint point, SVGMatrix matrix)
Transforms an {@link SVGPoint} by an {@link SVGMatrix} and returns
the new point. |
void | setX(float x)
DOM: Implements {@link SVGPoint#setX(float)}. |
void | setY(float y)
DOM: Implements {@link SVGPoint#setY(float)}. |
0
.