vector.h revision 507f5de177a9e789927e7ac3e80ac05b27720084
/*
* Inkscape::LivePathEffectParameters
*
* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include "live_effects/parameter/parameter.h"
#include "knot-holder-entity.h"
virtual ~VectorParam();
void setValues(Geom::Point const &new_origin, Geom::Point const &new_vector) { setVector(new_vector); setOrigin(new_origin); };
virtual void param_set_default();
virtual bool providesKnotHolderEntities() const { return true; }
VectorParam(const VectorParam&);
/// The looks of the vector and origin knots oncanvas
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif