/* * sb-math-test.cpp - some std functions to work with (pw)s-basis * * Authors: * Jean-Francois Barraud * * Copyright (C) 2006-2007 authors * * This library is free software; you can redistribute it and/or * modify it either under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation * (the "LGPL") or, at your option, under the terms of the Mozilla * Public License Version 1.1 (the "MPL"). If you do not alter this * notice, a recipient may use your version of this file under either * the MPL or the LGPL. * * You should have received a copy of the LGPL along with this library * in the file COPYING-LGPL-2.1; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * You should have received a copy of the MPL along with this library * in the file COPYING-MPL-1.1 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY * OF ANY KIND, either express or implied. See the LGPL or the MPL for * the specific language governing rights and limitations. */ #include <2geom/sbasis-math.h> #include <2geom/piecewise.h> #include <2geom/d2.h> #include <2geom/sbasis.h> #include <2geom/bezier-to-sbasis.h> #include <2geom/path.h> #include #include #define ZERO 1e-3 using std::vector; using namespace Geom; using namespace std; #include #include #include "pwsbhandle.cpp" // FIXME: This looks like it may give problems later, (including a .cpp file) //-Plot--------------------------------------------------------------- static void plot(cairo_t* cr, double (*f)(double), Piecewise const &x, double vscale=1){ int NbPts=40; for(int i=0; i const &f,double vscale=1){ D2 > plot; plot[1]=-f; plot[1]*=vscale; plot[1]+=300; plot[0].cuts.push_back(f.cuts.front()); plot[0].cuts.push_back(f.cuts.back()); plot[0].segs.emplace_back(Linear(150,450)); cairo_d2_pw_sb(cr, plot); for (unsigned i=1; i f = pwsbh.value(300); cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, .8); plot(cr,f,1); cairo_stroke(cr); /* cairo_set_source_rgba (cr, 0.3, 0.3, 0.3,.8); plot(cr,abs(f),1); cairo_stroke(cr); cairo_set_source_rgba (cr, 0.3, 0.3, 0.3,.8); plot(cr,signSb(f),75); cairo_stroke(cr);*/ // cairo_set_source_rgba (cr, 0.3, 0.3, 0.3,.8); // plot(cr,maxSb(f, -f+50),1); // cairo_stroke(cr); // cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 1); // plot(cr,sqrt(abs(f),.01,3),10); // plot(cr,&sqrt,abs(f),10); // cairo_stroke(cr); // cairo_set_source_rgba (cr, 1.0, 0.0, 0.0, 1); // plot(cr,cos(f,.01,3),75); // plot(cr,&cos,f,75); // cairo_stroke(cr); // cairo_set_source_rgba (cr, 0.9, 0.0, 0.7, 1); // plot(cr,sin(f,.01,3),75); // plot(cr,&sin,f,75); // cairo_stroke(cr); cairo_set_source_rgba (cr, 0.9, 0.0, 0.7, 1); plot(cr,divide(Linear(1),f,.01,3),2); plot(cr,&my_inv,f,10); cairo_stroke(cr); Toy::draw(cr, notify, width, height, save,timer_stream); } public: SbCalculusToy() : pwsbh(4,1){ for(int i = 0; i < 2*SIZE; i++) pwsbh.push_back(i*100,150+150+uniform()*300*0); handles.push_back(&pwsbh); } }; int main(int argc, char **argv) { init(argc, argv, new SbCalculusToy); return 0; } /* 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 :