MCPcopy Create free account
hub / github.com/JoshuaPostel/texaform / make_shape

Function make_shape

python/make.py:65–70  ·  view source on GitHub ↗
(name: str, dog: Dog, smelter: Smelter, lc: LazerCutter, fab: Fabricator)

Source from the content-addressed store, hash-verified

63
64
65def make_shape(name: str, dog: Dog, smelter: Smelter, lc: LazerCutter, fab: Fabricator):
66 shape = ShapeProperties.from_name(name)
67 make(shape.material, dog, smelter, lc, fab)
68 dog.transport(shape.material, fab.location, lc.location)
69 lc.cut_shape(shape)
70 dog.transport(shape.name, lc.location, fab.location)
71
72
73def make(

Callers 1

makeFunction · 0.85

Calls 4

makeFunction · 0.85
from_nameMethod · 0.80
transportMethod · 0.80
cut_shapeMethod · 0.80

Tested by

no test coverage detected