package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGMatrix
{

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