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

Method workplaneFromTagged

cadquery/cq.py:633–642  ·  view source on GitHub ↗

Copies the workplane from a tagged parent. :param name: tag to search for :returns: a CQ object with name's workplane

(self, name: str)

Source from the content-addressed store, hash-verified

631 return out
632
633 def workplaneFromTagged(self, name: str) -> "Workplane":
634 """
635 Copies the workplane from a tagged parent.
636
637 :param name: tag to search for
638 :returns: a CQ object with name's workplane
639 """
640 tagged = self._getTagged(name)
641 out = self.copyWorkplane(tagged)
642 return out
643
644 def first(self: T) -> T:
645 """

Callers 3

testExtrudeUntilFaceMethod · 0.80
test_MergeTagsMethod · 0.80

Calls 2

_getTaggedMethod · 0.95
copyWorkplaneMethod · 0.95

Tested by 3

testExtrudeUntilFaceMethod · 0.64
test_MergeTagsMethod · 0.64