[−][src]Struct triangle::Triangle
Fields
a: Pointb: Pointc: PointImplementations
impl Triangle[src]
pub fn aabb(&self) -> [Point; 2][src]
Returns two opposite points of axis-aligned bounding box.
pub fn angles(&self) -> Option<[f64; 3]>[src]
Gets angles of the triangle.
pub fn area(&self) -> f64[src]
Gets area of the triangle.
pub fn barycentric_to_cartesian(&self, pt: &Point) -> Point[src]
Converts barycentric coordinates of given point to cartesian coordinate system.
pub fn cartesian_to_barycentric(&self, pt: &Point) -> Point[src]
Converts cartesian coordinates of given point to barycentric coordinate system.
pub fn centroid(&self) -> Point[src]
Gets centroid of the triangle.
pub fn circumradius(&self) -> Option<f64>[src]
Gets radius of a circle that passes through all of the triangle's vertices, so called circumradius.
pub fn has_point(&self, pt: Point) -> bool[src]
Checks whether a given point lies inside the triangle.
pub fn heights(&self) -> Option<[f64; 3]>[src]
Gets the heights of the triangle.
pub fn inradius(&self) -> Option<f64>[src]
Gets radius of a circle which is tangent to each side of the triangle, so called inradius.
pub fn is_collinear(&self) -> bool[src]
Checks if points of triangle are collinear.
pub fn is_equilateral(&self) -> bool[src]
Checks if the triangle is equilateral.
pub fn is_golden(&self) -> bool[src]
Checks if the triangle is golden or sublime.
pub fn is_isosceles(&self) -> bool[src]
Checks if the triangle is isosceles.
pub fn is_right(&self) -> bool[src]
Checks if the triangle is right-angled.
pub fn medians(&self) -> [f64; 3][src]
Gets medians of the triangle.
pub fn perimeter(&self) -> f64[src]
Gets perimeter of the triangle.
pub fn semiperimeter(&self) -> f64[src]
Gets semiperimeter of the triangle.
pub fn sides(&self) -> [f64; 3][src]
Gets lengths of sides opposite to points.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Triangle[src]
impl Send for Triangle[src]
impl Sync for Triangle[src]
impl Unpin for Triangle[src]
impl UnwindSafe for Triangle[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,