(points: impl Into<Arc<[Vector2]>>, color: Color, thickness: f32)
| 113 | |
| 114 | #[inline] |
| 115 | pub fn path(points: impl Into<Arc<[Vector2]>>, color: Color, thickness: f32) -> Self { |
| 116 | Self::Path { |
| 117 | points: points.into(), |
| 118 | color, |
| 119 | thickness, |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | #[inline] |
| 124 | pub const fn sprite(texture: TextureID, size: Vector2, tint: Color) -> Self { |
no outgoing calls
no test coverage detected