JOGL v2.6.0-rc-20250706
JOGL, High-Performance Graphics Binding for Java™ (public API).
OutlineShapeXForm.java
Go to the documentation of this file.
1package com.jogamp.graph.curve;
2
3import com.jogamp.math.geom.plane.AffineTransform;
4
5public class OutlineShapeXForm {
6 public final OutlineShape shape;
7 private AffineTransform t;
8
10 this.shape = shape;
11 this.t = t;
12 }
13
14 public final AffineTransform getTransform() { return t; }
15 public final void setTransform(final AffineTransform t) { this.t = t; }
16}
OutlineShapeXForm(final OutlineShape shape, final AffineTransform t)
final void setTransform(final AffineTransform t)
A Generic shape objects which is defined by a list of Outlines.