We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2420160 commit 9b62e79Copy full SHA for 9b62e79
model/horizontal.py
@@ -37,6 +37,8 @@ def needs_wp(self):
37
38
def create_slvs_data(self, solvesys):
39
wp = self.get_workplane()
40
+ if self.entity2:
41
+ return solvesys.horizontal(self.entity1.py_data, wp, self.entity2.py_data)
42
return solvesys.horizontal(self.entity1.py_data, wp)
43
44
def placements(self):
model/vertical.py
@@ -36,6 +36,8 @@ def needs_wp(self):
36
+ return solvesys.vertical(self.entity1.py_data, wp, self.entity2.py_data)
return solvesys.vertical(self.entity1.py_data, wp)
0 commit comments