blob: b1c99f5ed7330912ee8c46c9510d2b9a3fec90a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.jogamp.graph.curve;
import jogamp.graph.geom.plane.AffineTransform;
public class OutlineShapeXForm {
public final OutlineShape shape;
public final AffineTransform t;
public OutlineShapeXForm(final OutlineShape shape, final AffineTransform t) {
this.shape = shape;
this.t = t;
}
}
|