X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinetangent1.h;h=85f097dacd926cac9429d7e625a68017d15354df;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=744291ff65c925fc2e61235cf8a51eeb0defde51;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/actions/actiondrawlinetangent1.h b/src/actions/actiondrawlinetangent1.h index 744291f..85f097d 100644 --- a/src/actions/actiondrawlinetangent1.h +++ b/src/actions/actiondrawlinetangent1.h @@ -5,8 +5,8 @@ #include "actioninterface.h" #include "vector.h" -class RS_Line; -class RS_Entity; +class Line; +class Entity; /** * This action class can handle user events to draw tangents from points @@ -24,7 +24,7 @@ class ActionDrawLineTangent1: public ActionInterface }; public: - ActionDrawLineTangent1(RS_EntityContainer & container, GraphicView & graphicView); + ActionDrawLineTangent1(EntityContainer & container, GraphicView & graphicView); ~ActionDrawLineTangent1(); virtual void trigger(); @@ -37,13 +37,13 @@ class ActionDrawLineTangent1: public ActionInterface private: /** Closest tangent. */ - RS_Line * tangent; + Line * tangent; /** Chosen startpoint */ Vector point; /** Chosen entity */ - RS_Entity * circle; + Entity * circle; /** Data of new tangent */ - RS_LineData data; + LineData data; }; #endif // __ACTIONDRAWLINETANGENT1_H__