(&self, shape: DrawShape2D, position: Vector2)
| 21 | |
| 22 | #[inline] |
| 23 | pub fn push(&self, shape: DrawShape2D, position: Vector2) { |
| 24 | self.api.draw_2d_shape(shape, position); |
| 25 | } |
| 26 | |
| 27 | #[inline] |
| 28 | pub fn circle(&self, center: Vector2, radius: f32, color: [f32; 4]) { |
no test coverage detected