All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.scravy.jazz.pictures.MutableAbstractPicture Maven / Gradle / Ivy

Go to download

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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy