blob: 1a21ea74f74fa96f4593e28af9aa47af67606468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.jogamp.graph.curve;
import com.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; }
}
|