X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlineangle.h;h=3d49a6a4251946720d80edbcd697b21a6707eabe;hb=af32602b9d8075080d5805143f1cd47fc10672e1;hp=5282c6600238cb207776bee133dcc8e55f6e89ae;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actiondrawlineangle.h b/src/actions/actiondrawlineangle.h index 5282c66..3d49a6a 100644 --- a/src/actions/actiondrawlineangle.h +++ b/src/actions/actiondrawlineangle.h @@ -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; };