Return the last item on the stack. :rtype: a CQ object
(self: T)
| 659 | return self.newObject([self.objects[i]]) |
| 660 | |
| 661 | def last(self: T) -> T: |
| 662 | """ |
| 663 | Return the last item on the stack. |
| 664 | |
| 665 | :rtype: a CQ object |
| 666 | """ |
| 667 | return self.newObject([self.objects[-1]]) |
| 668 | |
| 669 | def end(self, n: int = 1) -> "Workplane": |
| 670 | """ |