Searched defs:tpoint (Results 1 - 6 of 6) sorted by relevance

/inkscape/share/extensions/
H A Dconvert2dashes.py31 def tpoint((x1,y1), (x2,y2), t = 0.5): function
34 m1=tpoint(sp1[1],sp1[2],t)
35 m2=tpoint(sp1[2],sp2[0],t)
36 m3=tpoint(sp2[0],sp2[1],t)
37 m4=tpoint(m1,m2,t)
38 m5=tpoint(m2,m3,t)
39 m=tpoint(m4,m5,t)
H A Daddnodes.py30 def tpoint((x1,y1), (x2,y2), t = 0.5): function
33 m1=tpoint(sp1[1],sp1[2],t)
34 m2=tpoint(sp1[2],sp2[0],t)
35 m3=tpoint(sp2[0],sp2[1],t)
36 m4=tpoint(m1,m2,t)
37 m5=tpoint(m2,m3,t)
38 m=tpoint(m4,m5,t)
H A Dbezmisc.py139 def tpoint((x1,y1),(x2,y2),t): function
142 m1=tpoint((bx0,by0),(bx1,by1),t)
143 m2=tpoint((bx1,by1),(bx2,by2),t)
144 m3=tpoint((bx2,by2),(bx3,by3),t)
145 m4=tpoint(m1,m2,t)
146 m5=tpoint(m2,m3,t)
147 m=tpoint(m4,m5,t)
H A Dinterp.py31 def tpoint((x1,y1), (x2,y2), t = 0.5): function
34 m1=tpoint(sp1[1],sp1[2],t)
35 m2=tpoint(sp1[2],sp2[0],t)
36 m3=tpoint(sp2[0],sp2[1],t)
37 m4=tpoint(m1,m2,t)
38 m5=tpoint(m2,m3,t)
39 m=tpoint(m4,m5,t)
H A Dmeasure.py77 def tpoint((x1,y1), (x2,y2), t = 0.5): function
80 m1=tpoint(sp1[1],sp1[2],t)
81 m2=tpoint(sp1[2],sp2[0],t)
82 m3=tpoint(sp2[0],sp2[1],t)
83 m4=tpoint(m1,m2,t)
84 m5=tpoint(m2,m3,t)
85 m=tpoint(m4,m5,t)
H A Dgcodetools.py1348 def tpoint((x1,y1),(x2,y2),t): function
1357 a1 = tpoint(a[0],a[1],t)
1358 at = tpoint(a[1],a[2],t)
1359 b2 = tpoint(a[2],a[3],t)
1360 a2 = tpoint(a1,at,t)
1361 b1 = tpoint(b2,at,t)
1362 a3 = tpoint(a2,b1,t)

Completed in 42 milliseconds