@@ -578,8 +578,8 @@ def boolean_union(self, other):
578578 Examples
579579 --------
580580 >>> from compas.geometry import Box, Sphere
581- >>> A = Box(2).to_polyhedron()
582- >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(u=16 )
581+ >>> A = Box(2).to_polyhedron(triangulated=True )
582+ >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(triangulated=True )
583583 >>> C = A.boolean_union(B)
584584
585585 """
@@ -607,8 +607,8 @@ def boolean_difference(self, other):
607607 Examples
608608 --------
609609 >>> from compas.geometry import Box, Sphere
610- >>> A = Box(2).to_polyhedron()
611- >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(u=16 )
610+ >>> A = Box(2).to_polyhedron(triangulated=True )
611+ >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(triangulated=True )
612612 >>> C = A.boolean_difference(B)
613613
614614 """
@@ -636,8 +636,8 @@ def boolean_intersection(self, other):
636636 Examples
637637 --------
638638 >>> from compas.geometry import Box, Sphere
639- >>> A = Box(2).to_polyhedron()
640- >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(u=16 )
639+ >>> A = Box(2).to_polyhedron(triangulated=True )
640+ >>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(triangulated=True )
641641 >>> C = A.boolean_intersection(B)
642642
643643 """
0 commit comments