Skip to content

Commit

Permalink
Merge pull request #1349 from compas-dev/del_prints
Browse files Browse the repository at this point in the history
Remove debug print statements
  • Loading branch information
gonzalocasas committed May 2, 2024
2 parents a11d447 + 5f93bb5 commit 08f0624
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/compas_blender/scene/capsuleobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def draw(
vertices, faces = self.geometry.to_vertices_and_faces(u=u, v=v)
mesh = conversions.vertices_and_faces_to_blender_mesh(vertices, faces, name=self.geometry.name)
if shade_smooth:
print(dir(mesh))
mesh.shade_smooth()

obj = self.create_object(mesh, name=name)
Expand Down
1 change: 0 additions & 1 deletion src/compas_rhino/geometry/brep/brep.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,6 @@ def slice(self, plane):
if isinstance(plane, Frame):
plane = Plane.from_frame(plane)
curves = Rhino.Geometry.Brep.CreateContourCurves(self._brep, plane_to_rhino(plane))
print("curves:{}".format(curves))
return [curve_to_compas(curve) for curve in curves]

def split(self, cutter):
Expand Down

0 comments on commit 08f0624

Please sign in to comment.