package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPath
{
 public short MOVE_TO = 77;
 public short LINE_TO = 76;
 public short CURVE_TO = 67;
 public short QUAD_TO = 81;
 public short CLOSE = 90;

 public int getNumberOfSegments();
 
 public short getSegment(int int_1) throws DOMException;
 
 public float getSegmentParam(int int_1, int int_2) throws DOMException;
 
 public void moveTo(float float_1, float float_2);
 
 public void lineTo(float float_1, float float_2);
 
 public void quadTo(float float_1, float float_2, float float_3, float float_4);
 
 public void curveTo(float float_1, float float_2, float float_3, float float_4, float float_5, float float_6);
 
 public void close();
 
}