blob: 982576cd23ec7645bfc5a01077c952af4eba5416 [file] [log] [blame]
package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGPoint {
public float getX( );
public void setX( float x )
throws DOMException;
public float getY( );
public void setY( float y )
throws DOMException;
public SVGPoint matrixTransform ( SVGMatrix matrix );
}