Skip to content

Commit

Permalink
moved cq import
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Oct 12, 2022
1 parent a3e3a01 commit d260ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/paramak/parametric_components/dished_vacuum_vessel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from cadquery import Compound
from paramak import RotateMixedShape, CenterColumnShieldCylinder, ConstantThicknessDome


Expand Down Expand Up @@ -116,7 +117,6 @@ def create_solid(self):
upper_or_lower="lower",
rotation_angle=self.rotation_angle,
)
import cadquery as cq

shapes = [lower_dome_section.solid.val(), upper_dome_section.solid.val(), cylinder_section.solid.val()]
self.solid = cq.Compound.makeCompound(shapes)
self.solid = Compound.makeCompound(shapes)

0 comments on commit d260ce6

Please sign in to comment.