Update documentation to match __repr__() changes
[linpy.git] / examples / squares.py
index 15aed16..1a0cedb 100755 (executable)
@@ -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')