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

/inkscape/share/extensions/
H A Dbezmisc.py21 import math, cmath namespace
30 w1 = -.5 + .5*cmath.sqrt(-3.0)
31 w2 = -.5 - .5*cmath.sqrt(-3.0)
33 m1 = pow(complex((m+cmath.sqrt(n))/2),1./3)
34 n1 = pow(complex((m-cmath.sqrt(n))/2),1./3)
51 return (-c+cmath.sqrt(det))/(2.0*b),(-c-cmath.sqrt(det))/(2.0*b)
H A Drender_alphabetsoup.py24 import cmath namespace
118 sdet = cmath.sqrt(det)
H A Dgcodetools.py79 import cmath namespace
1597 w1 = -.5 + .5*cmath.sqrt(3)*1j
1598 w2 = -.5 - .5*cmath.sqrt(3)*1j
1605 m1 = pow(complex((m+cmath.sqrt(n))/2),1./3)
1606 n1 = pow(complex((m-cmath.sqrt(n))/2),1./3)
1618 return [(-c+cmath.sqrt(det))/(2*b),(-c-cmath.sqrt(det))/(2*b)]

Completed in 305 milliseconds