Update of /cvsroot/pyx/pyx/examples/misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5044/examples/misc
Modified Files:
connect.py
Log Message:
remove old helper stuff
Index: connect.py
===================================================================
RCS file: /cvsroot/pyx/pyx/examples/misc/connect.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** connect.py 7 Jul 2005 14:02:36 -0000 1.2
--- connect.py 29 Aug 2005 16:09:49 -0000 1.3
***************
*** 18,24 ****
for X,Y in [[A, B], [B, C], [C, D], [D, A]]:
! c.stroke(arc(X, Y, boxdists=0.2), [color.rgb.red, deco.earrow.normal])
! c.stroke(curve(D, B, boxdists=0.2, relangle1=45, relangle2=-45, relbulge=0.8),
[color.rgb.blue, deco.earrow.normal])
--- 18,24 ----
for X,Y in [[A, B], [B, C], [C, D], [D, A]]:
! c.stroke(arc(X, Y, boxdists=[0.2, 0.2]), [color.rgb.red, deco.earrow.normal])
! c.stroke(curve(D, B, boxdists=[0.2, 0.2], relangle1=45, relangle2=-45, relbulge=0.8),
[color.rgb.blue, deco.earrow.normal])
|