Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: André Wobst <wobsta@us...> - 2004-10-19 13:47:05
|
Update of /cvsroot/pyx/pyx/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4489 Modified Files: circles.py Log Message: - adjustments to the new path + graph data and style handling Index: circles.py =================================================================== RCS file: /cvsroot/pyx/pyx/examples/circles.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** circles.py 30 Aug 2004 16:27:15 -0000 1.7 --- circles.py 19 Oct 2004 13:46:55 -0000 1.8 *************** *** 5,14 **** # for those operations (circ1a, circ1b), (circ2a, circ2b) = circ1.intersect(circ2) ! intersection = (circ2.split([circ2a, circ2b])[1] ! << circ1.split([circ1b, circ1a])[1]) intersection[-1].close() ! union = (circ1.split([circ1b, circ1a])[0] ! << circ2.split([circ2a, circ2b])[0]) union[-1].close() --- 5,14 ---- # for those operations (circ1a, circ1b), (circ2a, circ2b) = circ1.intersect(circ2) ! intersection = (circ2.split([circ2b, circ2a])[1] ! << circ1.split([circ1a, circ1b])[1]) intersection[-1].close() ! union = (circ1.split([circ1a, circ1b])[0] ! << circ2.split([circ2b, circ2a])[0]) union[-1].close() |