Blame c++/contourgl/contourbuilder.h

faaf7d
/*
faaf7d
    ......... 2015 Ivan Mahonin
faaf7d
faaf7d
    This program is free software: you can redistribute it and/or modify
faaf7d
    it under the terms of the GNU General Public License as published by
faaf7d
    the Free Software Foundation, either version 3 of the License, or
faaf7d
    (at your option) any later version.
faaf7d
faaf7d
    This program is distributed in the hope that it will be useful,
faaf7d
    but WITHOUT ANY WARRANTY; without even the implied warranty of
faaf7d
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
faaf7d
    GNU General Public License for more details.
faaf7d
faaf7d
    You should have received a copy of the GNU General Public License
faaf7d
    along with this program.  If not, see <http: licenses="" www.gnu.org="">.</http:>
faaf7d
*/
faaf7d
faaf7d
#include "contour.h"
faaf7d
faaf7d
class ContourBuilder {
faaf7d
public:
faaf7d
	static void build_simple(std::vector<vector> &c);</vector>
93cbac
	static void build_car(Contour &c, const Vector &o, Real s);
faaf7d
	static void build(Contour &c);
faaf7d
};