diff --git a/crates/bevy_math/src/primitives/dim2.rs b/crates/bevy_math/src/primitives/dim2.rs index 53397fe07a656..d734a1879d908 100644 --- a/crates/bevy_math/src/primitives/dim2.rs +++ b/crates/bevy_math/src/primitives/dim2.rs @@ -1592,6 +1592,14 @@ impl Polygon { } } +impl From> for Polygon { + fn from(val: ConvexPolygon) -> Self { + Polygon { + vertices: val.vertices, + } + } +} + /// A convex polygon with `N` vertices. #[derive(Clone, Debug, PartialEq)] #[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))] @@ -1603,7 +1611,7 @@ impl Polygon { pub struct ConvexPolygon { /// The vertices of the [`ConvexPolygon`]. #[cfg_attr(feature = "serialize", serde(with = "super::serde::array"))] - pub vertices: [Vec2; N], + vertices: [Vec2; N], } impl Primitive2d for ConvexPolygon {} @@ -1651,6 +1659,20 @@ impl ConvexPolygon { pub fn new_unchecked(vertices: [Vec2; N]) -> Self { Self { vertices } } + + /// Get the vertices of this polygon + #[inline(always)] + pub fn vertices(&self) -> &[Vec2; N] { + &self.vertices + } +} + +impl TryFrom> for ConvexPolygon { + type Error = ConvexPolygonError; + + fn try_from(val: Polygon) -> Result { + ConvexPolygon::new(val.vertices) + } } /// A polygon with a variable number of vertices, allocated on the heap diff --git a/crates/bevy_mesh/src/primitives/dim2.rs b/crates/bevy_mesh/src/primitives/dim2.rs index a8b3237b7a80b..f978a8f1d68c7 100644 --- a/crates/bevy_mesh/src/primitives/dim2.rs +++ b/crates/bevy_mesh/src/primitives/dim2.rs @@ -408,7 +408,7 @@ impl Meshable for ConvexPolygon { fn mesh(&self) -> Self::Output { Self::Output { - vertices: self.vertices, + vertices: *self.vertices(), } } }