From 8f42378c707c8c962082e394fe67ac3bb5cd557b Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Sun, 14 Oct 2018 11:42:53 -0400 Subject: General cleanup --- CSMath/src/bezier/geom/transform/TDHPointRotation.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'CSMath/src/bezier/geom/transform/TDHPointRotation.java') diff --git a/CSMath/src/bezier/geom/transform/TDHPointRotation.java b/CSMath/src/bezier/geom/transform/TDHPointRotation.java index a207612..c92b172 100644 --- a/CSMath/src/bezier/geom/transform/TDHPointRotation.java +++ b/CSMath/src/bezier/geom/transform/TDHPointRotation.java @@ -2,10 +2,27 @@ package bezier.geom.transform; import bezier.geom.TDHPoint; +/** + * Transformation doing rotation about a point. + * @author bjculkin + * + */ public class TDHPointRotation extends TDHRotation { + /** + * x-coordinate of point. + */ public final double x0; + /** + * y-coordinate of point. + */ public final double y0; + /** + * Create a new point rotation. + * @param theta The degrees to rotate about the point. + * @param x0 The x-coordinate of the point. + * @param y0 The y-coordinate of the point. + */ public TDHPointRotation(double theta, double x0, double y0) { super(theta); -- cgit v1.2.3