]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlineangle.h
First steps in fixing/cleaning up preview/snapper rendering.
[architektonas] / src / actions / actiondrawlineangle.h
index 5282c6600238cb207776bee133dcc8e55f6e89ae..3d49a6a4251946720d80edbcd697b21a6707eabe 100644 (file)
@@ -24,7 +24,8 @@ class ActionDrawLineAngle: public ActionInterface
                        SetLength     /**< Setting length in the command line. */
                };
 
-               ActionDrawLineAngle(RS_EntityContainer & container, GraphicView & graphicView, double angle = 0.0, bool fixedAngle = false);
+               ActionDrawLineAngle(RS_EntityContainer & container, GraphicView & graphicView,
+                       double angle = 0.0, bool fixedAngle = false);
                ~ActionDrawLineAngle();
 
                virtual RS2::ActionType rtti();
@@ -51,29 +52,17 @@ class ActionDrawLineAngle: public ActionInterface
                bool hasFixedAngle();
 
        protected:
-               /**
-                * Line data defined so far.
-                */
+               /** Line data defined so far. */
                RS_LineData data;
-               /**
-                * Position.
-                */
+               /** Position. */
                Vector pos;
-               /**
-                * Line angle.
-                */
+               /** Line angle. */
                double angle;
-               /**
-                * Line length.
-                */
+               /** Line length. */
                double length;
-               /**
-                * Is the angle fixed?
-                */
+               /** Is the angle fixed? */
                bool fixedAngle;
-               /**
-                * Snap point (start, middle, end).
-                */
+               /** Snap point (start, middle, end). */
                int snpPoint;
 };