projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update reference examples to match the tutorial
[linpy.git]
/
examples
/
squares.py
diff --git
a/examples/squares.py
b/examples/squares.py
index
15aed16
..
1a0cedb
100755
(executable)
--- a/
examples/squares.py
+++ b/
examples/squares.py
@@
-31,7
+31,7
@@
if __name__ == '__main__':
shell.push('square2')
shell.push()
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()
shell.push('inter')
shell.push()
@@
-39,18
+39,19
@@
if __name__ == '__main__':
shell.push('hull')
shell.push()
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()
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('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')
shell.push('diff')
shell.push('~square1')