blob: c8d9223af52b270be3a6f2b3e72ef8c2132f8139 (
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.math.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; }
}
|