summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-powerstroke.cpp
blob: cb45e0518faba0f4d4052534c44fc070ce680444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#define INKSCAPE_LPE_POWERSTROKE_CPP
/** \file
 * @brief  PowerStroke LPE implementation. Creates curves with modifiable stroke width.
 */
/* Authors:
 *   Johan Engelen <j.b.c.engelen@utwente.nl>
 *
 * Copyright (C) 2010 Authors
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include "live_effects/lpe-powerstroke.h"

#include "sp-shape.h"
#include "display/curve.h"

#include <2geom/path.h>
#include <2geom/piecewise.h>
#include <2geom/sbasis-geometric.h>
#include <2geom/svg-elliptical-arc.h>
#include <2geom/transforms.h>

namespace Inkscape {
namespace LivePathEffect {

LPEPowerStroke::LPEPowerStroke(LivePathEffectObject *lpeobject) :
    Effect(lpeobject),
    offset_points(_("Offset points"), _("Offset points"), "offset_points", &wr, this),
    sort_points(_("Sort points"), _("Sort offset points according to their time value along the curve."), "sort_points", &wr, this, true)
{
    show_orig_path = true;

    registerParameter( dynamic_cast<Parameter *>(&offset_points) );
    registerParameter( dynamic_cast<Parameter *>(&sort_points) );
}

LPEPowerStroke::~LPEPowerStroke()
{

}


void
LPEPowerStroke::doOnApply(SPLPEItem *lpeitem)
{
    std::vector<Geom::Point> points;
    points.push_back( *(SP_SHAPE(lpeitem)->curve->first_point()) );
    Geom::Path const *path = SP_SHAPE(lpeitem)->curve->first_path();
    points.push_back( path->pointAt(path->size()/2) );
    points.push_back( *(SP_SHAPE(lpeitem)->curve->last_point()) );
    offset_points.param_set_and_write_new_value(points);
}

static void append_half_circle(Geom::Piecewise<Geom::D2<Geom::SBasis> > &pwd2,
                               Geom::Point const center, Geom::Point const &dir) {
    using namespace Geom;

    double r = L2(dir);
    SVGEllipticalArc cap(center + dir, r, r, angle_between(Point(1,0), dir), false, false, center - dir);
    Piecewise<D2<SBasis> > cap_pwd2(cap.toSBasis());
    pwd2.continuousConcat(cap_pwd2);
}

static bool compare_offsets (Geom::Point first, Geom::Point second)
{
    return first[Geom::X] <= second[Geom::X];
}


Geom::Piecewise<Geom::D2<Geom::SBasis> >
LPEPowerStroke::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in)
{
    using namespace Geom;

    // perhaps use std::list instead of std::vector?
    std::vector<Geom::Point> ts(offset_points.data().size());

    for (unsigned int i; i < ts.size(); ++i) {
        double t = nearest_point(offset_points.data().at(i), pwd2_in);
        double offset = L2(pwd2_in.valueAt(t) - offset_points.data().at(i));
        ts.at(i) = Geom::Point(t, offset);
    }
    if (sort_points) {
        sort(ts.begin(), ts.end(), compare_offsets);
    }

    // create stroke path where points (x,y) = (t, offset)
    Path strokepath;
    strokepath.start( Point(pwd2_in.domain().min(),0) );
    for (unsigned int i = 0 ; i < ts.size(); ++i) {
        strokepath.appendNew<Geom::LineSegment>(ts.at(i));
    }
    strokepath.appendNew<Geom::LineSegment>( Point(pwd2_in.domain().max(), 0) );
    for (unsigned int i = 0; i < ts.size(); ++i) {
        Geom::Point temp = ts.at(ts.size() - 1 - i);
        strokepath.appendNew<Geom::LineSegment>( Geom::Point(temp[X], - temp[Y]) );
    }
    strokepath.close();

    D2<Piecewise<SBasis> > patternd2 = make_cuts_independent(strokepath.toPwSb());
    Piecewise<SBasis> x = Piecewise<SBasis>(patternd2[0]);
    Piecewise<SBasis> y = Piecewise<SBasis>(patternd2[1]);

    Piecewise<D2<SBasis> > der = unitVector(derivative(pwd2_in));
    Piecewise<D2<SBasis> > n   = rot90(der);

//    output  = pwd2_in + n * offset;
//    append_half_circle(output, pwd2_in.lastValue(), n.lastValue() * offset);
//    output.continuousConcat(reverse(pwd2_in - n * offset));
//    append_half_circle(output, pwd2_in.firstValue(), -n.firstValue() * offset);

    Piecewise<D2<SBasis> > output = compose(pwd2_in,x) + y*compose(n,x);
    return output;
}

/* ######################## */

} //namespace LivePathEffect
} /* namespace Inkscape */

/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :