summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathSegArcAbs.java
blob: 150340c38d4224f6a4449d9adf4203308de80e10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPathSegArcAbs extends 
               SVGPathSeg {
  public float   getX( );
  public void      setX( float x )
                       throws DOMException;
  public float   getY( );
  public void      setY( float y )
                       throws DOMException;
  public float   getR1( );
  public void      setR1( float r1 )
                       throws DOMException;
  public float   getR2( );
  public void      setR2( float r2 )
                       throws DOMException;
  public float   getAngle( );
  public void      setAngle( float angle )
                       throws DOMException;
  public boolean getLargeArcFlag( );
  public void      setLargeArcFlag( boolean largeArcFlag )
                       throws DOMException;
  public boolean getSweepFlag( );
  public void      setSweepFlag( boolean sweepFlag )
                       throws DOMException;
}