Searched defs:sqrt (Results 1 - 3 of 3) sorted by relevance

/inkscape/share/extensions/
H A Dguides_creator.py51 from math import sqrt namespace
63 from math import sqrt namespace
331 gold = (1 + sqrt(5)) / 2
/inkscape/src/2geom/
H A Dsbasis-math.cpp33 //this a first try to define sqrt, cos, sin, etc...
149 sqrtf[0] = Linear(std::sqrt(f[0][0]), std::sqrt(f[0][1]));
161 sqrtf = Linear(std::sqrt(fabs(f.at0())), std::sqrt(fabs(f.at1())));
178 /** Compute the sqrt of a function.
181 Piecewise<SBasis> sqrt(SBasis const &f, double tol, int order){ function in namespace:Geom
182 return sqrt(max(f,Linear(tol*tol)),tol,order);
185 /** Compute the sqrt of a function.
188 Piecewise<SBasis> sqrt(Piecewis function in namespace:Geom
[all...]
H A Dsbasis.cpp364 /** Compute the sqrt of a
366 \returns sbasis \f[ \sqrt{a} \f]
371 SBasis sqrt(SBasis const &a, int k) { function in namespace:Geom
376 c[0] = Linear(std::sqrt(a[0][0]), std::sqrt(a[0][1]));

Completed in 39 milliseconds