Skip to content

Commit

Permalink
git
Browse files Browse the repository at this point in the history
  • Loading branch information
YuXHe15 committed Oct 18, 2023
1 parent 5a10543 commit b50b86d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions amworkflow/geometry/composite_geometries.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,11 @@ def calculate_boundary(self) -> None:
seg1 = bcad.Segment(pnt1, pnt2)
seg2 = bcad.Segment(pnt2, pnt3)
seg3 = bcad.Segment(pnt3, pnt1)
wire1 = Wire(seg1, seg2,seg3)
surf1 = Surface(wire1)
pprint(id_index)
print(seg3)
print(pnt1.property["occ_pnt"])

wire1 = bcad.Wire(seg1, seg2,seg3)
surf1 = bcad.Surface(wire1)
# pprint(bcad.id_index)
# print(seg3)
# print(pnt1.property["occ_pnt"])
pnts_handler = PntHandler()
pnts_handler.init_center_points(pnt1, pnt2, pnt3)
pnts_handler.handle_boundary_point(pnt1, pnt4)
Expand Down

0 comments on commit b50b86d

Please sign in to comment.