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('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')