Lines Matching defs:order
153 \param order the maximum degree to use for approximation
157 Geom::atan2(Piecewise<D2<SBasis> > const &vect, double tol, unsigned order){
166 angle = divide (x*derivative(y)-y*derivative(x), x*x+y*y, tol, order);
184 \param order the maximum degree to use for approximation
188 Geom::atan2(D2<SBasis> const &vect, double tol, unsigned order){
189 return atan2(Piecewise<D2<SBasis> >(vect),tol,order);
195 \param order the maximum degree to use for approximation
199 Geom::tan2(SBasis const &angle, double tol, unsigned order){
200 return tan2(Piecewise<SBasis>(angle), tol, order);
206 \param order the maximum degree to use for approximation
210 Geom::tan2(Piecewise<SBasis> const &angle, double tol, unsigned order){
211 return D2<Piecewise<SBasis> >(cos(angle, tol, order), sin(angle, tol, order));
217 \param order the maximum degree to use for approximation
225 Geom::unitVector(D2<SBasis> const &V_in, double tol, unsigned order){
238 SBasis a = SBasis(order+1, Linear(0.));
240 SBasis b = SBasis(order+1, Linear(0.));
246 for (unsigned k=1; k<=order; k++){
277 if (r_eqn1.tailError(order)>rel_tol || r_eqn2.tailError(order)>tol){
280 unitV0 = unitVector(compose(V,Linear(0,.5)),tol,order);
281 unitV1 = unitVector(compose(V,Linear(.5,1)),tol,order);
297 \param order the maximum degree to use for approximation
305 Geom::unitVector(Piecewise<D2<SBasis> > const &V, double tol, unsigned order){
311 unit_seg = unitVector(VV.segs[i],tol, order);
398 \param order the maximum degree to use for approximation
403 unsigned order,
420 sub_u[dim]=compose_inverse(sub_M[dim],sub_s, order, tol);
430 \param order the maximum degree to use for approximation
435 unsigned order,
439 result.concat( arc_length_parametrization(M[i],order,tol) );