diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2018-10-14 11:42:53 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2018-10-14 11:42:53 -0400 |
| commit | 8f42378c707c8c962082e394fe67ac3bb5cd557b (patch) | |
| tree | 9b4070c764b8d0ed792d9f79a66fc169a237b949 /CSMath/src/bezier/geom/transform/TDHCombination.java | |
| parent | f778a81e81506a4db455a6f506571c6bba935bf2 (diff) | |
General cleanup
Diffstat (limited to 'CSMath/src/bezier/geom/transform/TDHCombination.java')
| -rw-r--r-- | CSMath/src/bezier/geom/transform/TDHCombination.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CSMath/src/bezier/geom/transform/TDHCombination.java b/CSMath/src/bezier/geom/transform/TDHCombination.java index 27d71e7..65dec7c 100644 --- a/CSMath/src/bezier/geom/transform/TDHCombination.java +++ b/CSMath/src/bezier/geom/transform/TDHCombination.java @@ -5,7 +5,15 @@ import java.util.List; import bezier.geom.TDHPoint;
+/**
+ * Combination of 2D homogenous transforms.
+ * @author bjculkin
+ *
+ */
public class TDHCombination implements TDHTransform {
+ /**
+ * The transforms that make up this transform.
+ */
public final List<TDHTransform> forms;
@Override
@@ -13,6 +21,10 @@ public class TDHCombination implements TDHTransform { return TDHTransformType.COMBINATION;
}
+ /**
+ * Create a new combined transform.
+ * @param forms The transforms to combine.
+ */
public TDHCombination(TDHTransform... forms) {
this.forms = new ArrayList<>(forms.length);
|
