You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A 2-dimensional oriented bounding box with coordinate type C#[derive(Debug,Component,Clone,PartialEq)]pubstructOrientedBoundingBox<C:Coordinate>{center:Position<C>,local_x:Direction,local_y:Direction,halfwidth_extent_x:C,halfwidth_extent_y:C,}/// A 2-dimensional convex hull with coordinate type C#[derive(Debug,Component,Clone)]pubstructConvexHull<C:Coordinate>{/// The points which define a convex regionpubhull_points:Vec<Position<C>>,}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: