Return the first value on the stack. If no value is present, current plane origin is returned. :return: the first value on the stack. :rtype: A CAD primitive
(self)
| 409 | return self |
| 410 | |
| 411 | def val(self) -> CQObject: |
| 412 | """ |
| 413 | Return the first value on the stack. If no value is present, current plane origin is returned. |
| 414 | |
| 415 | :return: the first value on the stack. |
| 416 | :rtype: A CAD primitive |
| 417 | """ |
| 418 | return self.objects[0] if self.objects else self.plane.origin |
| 419 | |
| 420 | def _getTagged(self: T, name: str) -> T: |
| 421 | """ |
no outgoing calls