lpe-pathalongpath.h revision 152db6322126c6578de1d122d8fac87522b5b627
#ifndef INKSCAPE_LPE_PATHALONGPATH_H
#define INKSCAPE_LPE_PATHALONGPATH_H
/*
* Inkscape::LPEPathAlongPath
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/effect.h"
#include "live_effects/parameter/path.h"
#include "live_effects/parameter/enum.h"
#include "live_effects/parameter/bool.h"
enum PAPCopyType {
PAPCT_SINGLE = 0,
PAPCT_END // This must be last
};
~LPEPathAlongPath();
Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in);
void on_pattern_pasted();
LPEPathAlongPath(const LPEPathAlongPath&);
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif