package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGMatrix
{

 public float getComponent(int int_1) throws DOMException;
 
 public SVGMatrix mMultiply(SVGMatrix svgmatrix_1);
 
 public SVGMatrix inverse() throws SVGException;
 
 public SVGMatrix mTranslate(float float_1, float float_2);
 
 public SVGMatrix mScale(float float_1);
 
 public SVGMatrix mRotate(float float_1);
 
}