def mirror(self, plane: Plane): self.axis.mirror(plane) CollectionOfMeshes.mirror(self, plane) return self
def mirror(self, plane: Plane): self.translation -= 2 * ( self.translation @ plane.normal) * plane.normal CollectionOfMeshes.mirror(self, plane) return self