Copies the workplane from a tagged parent. :param name: tag to search for :returns: a CQ object with name's workplane
(self, name: str)
| 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 | """ |