package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGSVGElement extends SVGLocatableElement
{

 public SVGMatrix createSVGMatrixComponents(float, float, float, float, float, float);
 
 public SVGPath createSVGPath();
 
 public SVGRect createSVGRect();
 
 public SVGRGBColor createSVGRGBColor(int, int, int) throws SVGException;
 
 public float getCurrentRotate();
 
 public float getCurrentScale();
 
 public float getCurrentTime();
 
 public SVGPoint getCurrentTranslate();
 
 public void setCurrentRotate(float);
 
 public void setCurrentScale(float) throws DOMException;
 
 public void setCurrentTime(float);
 
}