1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGPathSegArcRel extends 7 SVGPathSeg { 8 public float getX( ); 9 public void setX( float x ) 10 throws DOMException ; 11 public float getY( ); 12 public void setY( float y ) 13 throws DOMException ; 14 public float getR1( ); 15 public void setR1( float r1 ) 16 throws DOMException ; 17 public float getR2( ); 18 public void setR2( float r2 ) 19 throws DOMException ; 20 public float getAngle( ); 21 public void setAngle( float angle ) 22 throws DOMException ; 23 public boolean getLargeArcFlag( ); 24 public void setLargeArcFlag( boolean largeArcFlag ) 25 throws DOMException ; 26 public boolean getSweepFlag( ); 27 public void setSweepFlag( boolean sweepFlag ) 28 throws DOMException ; 29 } 30 | Popular Tags |