| java.lang.Object com.sun.perseus.j2d.Point
Point | public class Point implements SVGPoint(Code) | | This class represents an SVGPoint datatype, identified by
its x and y components.
author: Kevin Wong version: $Id: Point.java,v 1.2 2006/04/21 06:35:14 st125089 Exp $ |
Constructor Summary | |
public | Point(float x, float y) Constructs an SVGPoint with given X and Y
coordinates. |
Method Summary | |
public float | getX() | public float | getY() | public void | setX(float value) | public void | setY(float value) |
Point | public Point(float x, float y)(Code) | | Constructs an SVGPoint with given X and Y
coordinates.
Parameters: x - the x-axis coordinate. Parameters: y - the y-axis coordinate. |
setX | public void setX(float value)(Code) | | |
setY | public void setY(float value)(Code) | | |
|
|