pub struct Triangle2 {
pub a: Point2,
pub b: Point2,
pub c: Point2,
}Expand description
2D triangle.
Fields§
§a: Point2§b: Point2§c: Point2Trait Implementations§
Auto Trait Implementations§
impl Freeze for Triangle2
impl RefUnwindSafe for Triangle2
impl Send for Triangle2
impl Sync for Triangle2
impl Unpin for Triangle2
impl UnsafeUnpin for Triangle2
impl UnwindSafe for Triangle2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more