package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGSVGElement extends SVGLocatableElement
{

 public SVGMatrix createSVGMatrixComponents(float float_1, float float_2, float float_3, float float_4, float float_5, float float_6);
 
 public SVGPath createSVGPath();
 
 public SVGRect createSVGRect();
 
 public SVGRGBColor createSVGRGBColor(int int_1, int int_2, int int_3) throws SVGException;
 
 public float getCurrentRotate();
 
 public float getCurrentScale();
 
 public float getCurrentTime();
 
 public SVGPoint getCurrentTranslate();
 
 public void setCurrentRotate(float float_1);
 
 public void setCurrentScale(float float_1) throws DOMException;
 
 public void setCurrentTime(float float_1);
 
}