~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/display/sp-ctrlline.h

  • Committer: cilix42
  • Date: 2008-09-18 17:48:42 UTC
  • Revision ID: cilix42@users.sourceforge.net-20080918174842-1ad33a7d7gqhv2hq
Next roud of NR ==> Geom conversion

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
struct SPCtrlLine : public SPCanvasItem{
26
26
    SPItem *item;  // the item to which this line belongs in some sense; may be NULL for some users
27
27
    guint32 rgba;
28
 
    NR::Point s, e;
29
 
    NR::Matrix affine;
 
28
    Geom::Point s, e;
 
29
    Geom::Matrix affine;
30
30
};
31
31
struct SPCtrlLineClass : public SPCanvasItemClass{};
32
32
 
34
34
 
35
35
void sp_ctrlline_set_rgba32 (SPCtrlLine *cl, guint32 rgba);
36
36
void sp_ctrlline_set_coords (SPCtrlLine *cl, gdouble x0, gdouble y0, gdouble x1, gdouble y1);
37
 
void sp_ctrlline_set_coords (SPCtrlLine *cl, const NR::Point start, const NR::Point end);
 
37
void sp_ctrlline_set_coords (SPCtrlLine *cl, const Geom::Point start, const Geom::Point end);
38
38
 
39
39
 
40
40