(&mut self)
| 361 | /// Flips the element vertically (mirror across the horizontal axis). |
| 362 | #[inline] |
| 363 | pub fn flip_y(&mut self) -> &mut Self { |
| 364 | self.config.flip_y = true; |
| 365 | self |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | /// Builder for configuring shape rotation (vertex-level). |
no outgoing calls