Paul Duffin wrote:
The setWidth and setHeight methods on SVGOMRect class do not do anything.
public void setWidth( float width ) throws DOMException {
this.w = w;
^ should be width
}
public void setHeight( float height ) throws DOMException {
this.h = h;
^ shou
The setWidth and setHeight methods on SVGOMRect class do not do anything.
public void setWidth( float width ) throws DOMException {
this.w = w;
^ should be width
}
public void setHeight( float height ) throws DOMException {
this.h = h;
^ should be height
}
---