summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPoint.java
blob: 441b65c14aa5453dac62109d80e01663c031381c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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 );
}