de.scravy.jazz.pictures.MutableAbstractPicture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jazz Show documentation
Show all versions of jazz Show documentation
An easy drawing library for Java using Swing for drawing (therefor Jazz).
The newest version!
package de.scravy.jazz.pictures;
import java.awt.Shape;
import java.awt.geom.AffineTransform;
public abstract class MutableAbstractPicture>
extends AbstractPicture
{
private static final long serialVersionUID = 1L;
public MutableAbstractPicture(final Shape shape) {
super(shape);
}
@Override
final public P transform(final AffineTransform transform) {
return super.transform(transform);
}
@Override
final public P transform(
final double m00, final double m10,
final double m01, final double m11,
final double m02, final double m12) {
return super.transform(m00, m10, m01, m11, m02, m12);
}
}