doc updates
This commit is contained in:
parent
ccd8a2270a
commit
4699d5c14f
@ -130,7 +130,6 @@ abstract = library <= tree
|
|||||||
my_pattern.place(abstract, ...)
|
my_pattern.place(abstract, ...)
|
||||||
|
|
||||||
# or
|
# or
|
||||||
|
|
||||||
my_pattern.place(library << make_tree(...), ...)
|
my_pattern.place(library << make_tree(...), ...)
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -169,8 +168,6 @@ has_input = ('input' in pattern) # Error!
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
* Better interface for polygon operations (e.g. with `pyclipper`)
|
* Better interface for polygon operations (e.g. with `pyclipper`)
|
||||||
|
@ -30,7 +30,7 @@ class Shape(PositionableImpl, Rotatable, Mirrorable, Copyable, Scalable,
|
|||||||
"""
|
"""
|
||||||
Class specifying functions common to all shapes.
|
Class specifying functions common to all shapes.
|
||||||
"""
|
"""
|
||||||
__slots__ = () # Children should use AutoSlots
|
__slots__ = () # Children should use AutoSlots or set slots themselves
|
||||||
|
|
||||||
def __copy__(self) -> Self:
|
def __copy__(self) -> Self:
|
||||||
cls = self.__class__
|
cls = self.__class__
|
||||||
|
Loading…
Reference in New Issue
Block a user