X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/ddefc755b0637b08a0a2788be3a0678b52942f5b..5d474779438016e3af4bfd13a4200a01ca9ec3c7:/examples/squares.py diff --git a/examples/squares.py b/examples/squares.py index 15aed16..1a0cedb 100755 --- a/examples/squares.py +++ b/examples/squares.py @@ -31,7 +31,7 @@ if __name__ == '__main__': shell.push('square2') shell.push() - shell.push('inter = square1.intersection(square2)') + shell.push('inter = square1.intersection(square2) # or square1 & square2') shell.push('inter') shell.push() @@ -39,18 +39,19 @@ if __name__ == '__main__': shell.push('hull') shell.push() - shell.push('square1.project([y])') + shell.push('proj = square1.project([y])') + shell.push('proj') shell.push() shell.push('inter <= square1') shell.push('inter == Empty') shell.push() - shell.push('union = square1 | square2') + shell.push('union = square1.union(square2) # or square1 | square2') shell.push('union') shell.push('union <= hull') shell.push() - shell.push('diff = square1 - square2') + shell.push('diff = square1.difference(square2) # or square1 - square2') shell.push('diff') shell.push('~square1')