Add links

This commit is contained in:
Elod Csirmaz 2024-12-01 15:51:43 +00:00
parent bb7155a5fd
commit dc0a58c342
9 changed files with 68 additions and 23 deletions

View file

@ -8,7 +8,9 @@ from openscad_py.collection import Collection
class Intersection(Object):
"""Represents an intersection applied to an object (usually a collection of objects)"""
"""Represents an intersection applied to an object (usually a collection of objects).
See https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/CSG_Modelling#intersection
"""
def __init__(self, child: TUnion[Object, list]):
self.child = Collection.c(child)