/** \file
* LPE Construct Grid implementation
*/
/*
* Authors:
* Johan Engelen
*
* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/lpe-constructgrid.h"
namespace Inkscape {
namespace LivePathEffect {
using namespace Geom;
{
}
{
}
{
// Check that the path has at least 3 nodes (i.e. 2 segments), more nodes are ignored
// read the first 3 nodes:
// make first_p and second_p be the construction *vectors* of the grid:
// create the gridpaths of the two directions
// use the gridpaths and set them in the correct grid
}
}
return path_out;
} else {
return path_in;
}
}
} //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 :