sbasis-geometric.h revision 981b809bc6ed10a21e89444d9447e5475801874f
#ifndef _SBASIS_GEOMETRIC
#define _SBASIS_GEOMETRIC
#include "d2.h"
#include "piecewise.h"
#include <vector>
/** two-dimensional geometric operators.
* Copyright 2007, JFBarraud
* Copyright 2007, njh
*
* These operators are built on a more 'polynomially robust'
* transformation to map a function that takes a [0,1] parameter to a
* 2d vector into a function that takes the same [0,1] parameter to a
* unit vector with the same direction.
*
* operations, sqrt and divide, this approach forms a curve directly
* from the various tangent directions at each end (angular jet). As
* a result, the final path has a convergence behaviour derived from
* that of the sin and cos series. -- njh
*/
// Piecewise<D2<SBasis> >
// uniform_speed(D2<SBasis> const M,
// double tol=.1);
unsigned order=3,
double tol=.01);
unsigned order=3,
double tol=.01);
};
#endif
/*
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 :