splines.h revision 3b711c89939d4f10cb1b81da2726a49aa45a2ab7
/* This file is part of the libdepixelize project
Copyright (C) 2013 VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com>
GNU Lesser General Public License Usage
under the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
You should have received a copy of the GNU Lesser General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
GNU General Public License Usage
Alternatively, this library may be used under the terms of the GNU General
Public License as published by the Free Software Foundation, either version
2 of the License, or (at your option) any later version.
You should have received a copy of the GNU General Public License along with
this library. If not, see <http://www.gnu.org/licenses/>.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
*/
#ifndef LIBDEPIXELIZE_TRACER_SPLINES_H
#define LIBDEPIXELIZE_TRACER_SPLINES_H
#include <glib.h>
{
struct Path
{
/**
* It may be benefited from C++11 move references.
*/
};
Splines() /* = default */ {}
/**
* There are two levels of optimization. The first level only removes
* redundant points of colinear points. The second level uses the
* Kopf-Lischinski optimization. The first level is always enabled.
* The second level is enabled using \p optimize.
*/
int nthreads);
// Iterators
{
}
const_iterator begin() const
{
}
{
}
const_iterator end() const
{
}
int width() const
{
return _width;
}
int height() const
{
return _height;
}
int _width;
int _height;
};
} // namespace Tracer
#endif // LIBDEPIXELIZE_TRACER_SPLINES_H
/*
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 :