X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinetangent1.h;h=85f097dacd926cac9429d7e625a68017d15354df;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=8d369c8b64d802e3332a03bf08851c879676cc71;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actiondrawlinetangent1.h b/src/actions/actiondrawlinetangent1.h index 8d369c8..85f097d 100644 --- a/src/actions/actiondrawlinetangent1.h +++ b/src/actions/actiondrawlinetangent1.h @@ -1,12 +1,12 @@ #ifndef __ACTIONDRAWLINETANGENT1_H__ #define __ACTIONDRAWLINETANGENT1_H__ -#include "rs_line.h" +#include "line.h" #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__