summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-rough-hatches.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-rough-hatches.cpp')
-rw-r--r--src/live_effects/lpe-rough-hatches.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-rough-hatches.cpp b/src/live_effects/lpe-rough-hatches.cpp
index de40d4fb5..f52977fcb 100644
--- a/src/live_effects/lpe-rough-hatches.cpp
+++ b/src/live_effects/lpe-rough-hatches.cpp
@@ -68,7 +68,7 @@ struct LevelCrossingInfoOrder {
typedef std::vector<LevelCrossing> LevelCrossings;
-std::vector<double>
+static std::vector<double>
discontinuities(Piecewise<D2<SBasis> > const &f){
std::vector<double> result;
if (f.size()==0) return result;
@@ -211,7 +211,7 @@ public:
// Bend a path...
//-------------------------------------------------------
-Piecewise<D2<SBasis> > bend(Piecewise<D2<SBasis> > const &f, Piecewise<SBasis> bending){
+static Piecewise<D2<SBasis> > bend(Piecewise<D2<SBasis> > const &f, Piecewise<SBasis> bending){
D2<Piecewise<SBasis> > ff = make_cuts_independent(f);
ff[X] += compose(bending, ff[Y]);
return sectionize(ff);