com.jogamp.graph.curve.OutlineShapeXForm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jogl-all-android Show documentation
Show all versions of jogl-all-android Show documentation
Java™ Binding for the OpenGL® API (Android)
The newest version!
package com.jogamp.graph.curve;
import jogamp.graph.geom.plane.AffineTransform;
public class OutlineShapeXForm {
public final OutlineShape shape;
private AffineTransform t;
public OutlineShapeXForm(final OutlineShape shape, final AffineTransform t) {
this.shape = shape;
this.t = t;
}
public final AffineTransform getTransform() { return t; }
public final void setTransform(final AffineTransform t) { this.t = t; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy