(self, vector: Vect3)
| 913 | # Transforming operations |
| 914 | |
| 915 | def shift(self, vector: Vect3) -> Self: |
| 916 | self.apply_points_function( |
| 917 | lambda points: points + vector, |
| 918 | about_edge=None, |
| 919 | works_on_bounding_box=True, |
| 920 | ) |
| 921 | return self |
| 922 | |
| 923 | def scale( |
| 924 | self, |
no test coverage detected