MCPcopy
hub / github.com/CadQuery/cadquery / assemble

Method assemble

cadquery/sketch.py:964–971  ·  view source on GitHub ↗

Assemble edges into faces.

(self: T, mode: Modes = "a", tag: Optional[str] = None)

Source from the content-addressed store, hash-verified

962 return self
963
964 def assemble(self: T, mode: Modes = "a", tag: Optional[str] = None) -> T:
965 """
966 Assemble edges into faces.
967 """
968
969 return self.face(
970 (e for e in self._edges if not e.forConstruction), 0, mode, tag
971 )
972
973 # constraints
974 @multimethod

Callers 6

test_assembleFunction · 0.95
test_edge_interfaceFunction · 0.80
test_bezierFunction · 0.80
test_locatedFunction · 0.80
test_constraint_solverFunction · 0.80
test_mixed_closeFunction · 0.80

Calls 1

faceMethod · 0.95

Tested by 6

test_assembleFunction · 0.76
test_edge_interfaceFunction · 0.64
test_bezierFunction · 0.64
test_locatedFunction · 0.64
test_constraint_solverFunction · 0.64
test_mixed_closeFunction · 0.64