~inkscape.dev/inkscape/transform_by_two_points

« back to all changes in this revision

Viewing changes to src/live_effects/lpe-transform_2pts.h

  • Committer: Jabiertxof
  • Date: 2015-04-10 22:54:25 UTC
  • Revision ID: jtx@jtx.marker.es-20150410225425-7f9dmx3nuuroeglk
Fix coding style issues in transform by two points LPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
/*
9
9
 * Authors:
10
 
 *   
 
10
 *
11
11
 *
12
12
 *
13
13
 * Released under GNU GPL, read the file 'COPYING' for more information
43
43
    virtual void addCanvasIndicators(SPLPEItem const *lpeitem, std::vector<Geom::PathVector> &hp_vec);
44
44
 
45
45
private:
46
 
    ToggleButtonParam fromOriginalWidth;
 
46
    ToggleButtonParam from_original_width;
47
47
    PointParam start;
48
48
    PointParam end;
49
 
    ScalarParam firstKnot;
50
 
    ScalarParam lastKnot;
51
 
    bool fromOriginalWidthToogler;
52
 
    Geom::Point A;
53
 
    Geom::Point B;
54
 
    SPCurve * c;
55
 
    bool appandedPath;
 
49
    ScalarParam first_knot;
 
50
    ScalarParam last_knot;
 
51
    bool from_original_width_toogler;
 
52
    Geom::Point point_a;
 
53
    Geom::Point point_b;
 
54
    SPCurve * curve_c;
 
55
    bool append_path;
56
56
    LPETransform2Pts(const LPETransform2Pts&);
57
57
    LPETransform2Pts& operator=(const LPETransform2Pts&);
58
58
};