#include <2geom/basic-intersection.h> #include <2geom/d2.h> #include <2geom/sbasis.h> #include <2geom/sbasis-2d.h> #include <2geom/bezier-to-sbasis.h> #include #include using std::vector; using namespace Geom; /* jfb: I think the evolute goes to infinity at inflection points, in which case you cannot "join" the pieces by hand. jfb: for the evolute toy, you could not only cut at inflection points, but event remove the domains where cross(dda,da) A(psh.asBezier()); D2 dA = derivative(A); D2 ddA = derivative(dA); SBasis crs = cross(ddA, dA); cairo_d2_sb(cr, D2(Linear(0,1000), crs*(500./bounds_exact(crs)->extent()))); vector rts = roots(crs); for(double rt : rts) { draw_handle(cr, A(rt)); } cairo_d2_sb(cr, A); cairo_stroke(cr); Interval r(0, 1); if(!rts.empty()) r.setMax(rts[0]); //if(rts[0] == 0) //rts.erase(rts.begin(), rts.begin()+1); A = portion(A, r.min(), r.max()); dA = portion(dA, r.min(), r.max()); ddA = portion(ddA, r.min(), r.max()); crs = portion(crs, r.min(), r.max()); cairo_stroke(cr); Piecewise s = divide(dA[0]*dot(dA,dA), crs, 100, 1); D2 > ev4(Piecewise(A[0]) + divide(-dA[1]*dot(dA,dA), crs, 100, 1), Piecewise(A[1]) + divide(dA[0]*dot(dA,dA), crs, 100, 1)); cairo_d2_pw_sb(cr, ev4); cairo_stroke(cr); if(1) { std::cout << "bnd" << *bounds_exact(dot(ev4, ev4)) << std::endl; cairo_d2_pw_sb(cr, D2 >(Piecewise(SBasis(Linear(0,1000))), dot(ev4, ev4)*1000)); cairo_stroke(cr); vector rts = roots(dot(ev4, ev4)-1); for(double rt : rts) { std::cout << rt << std::endl; draw_handle(cr, ev4(rt)); } } cairo_set_source_rgba (cr, 1., 0., 1, 1); Toy::draw(cr, notify, width, height, save,timer_stream); } public: Evolution (unsigned bez_ord) { handles.push_back(&psh); for(unsigned i = 0; i < bez_ord; i++) psh.push_back(uniform()*400, uniform()*400); } }; int main(int argc, char **argv) { unsigned bez_ord=5; if(argc > 1) sscanf(argv[1], "%d", &bez_ord); init(argc, argv, new Evolution(bez_ord)); 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:fileencoding=utf-8:textwidth=99 :