(&mut self)
| 354 | /// Flips the element horizontally (mirror across the vertical axis). |
| 355 | #[inline] |
| 356 | pub fn flip_x(&mut self) -> &mut Self { |
| 357 | self.config.flip_x = true; |
| 358 | self |
| 359 | } |
| 360 | |
| 361 | /// Flips the element vertically (mirror across the horizontal axis). |
| 362 | #[inline] |
no outgoing calls