Struct Triangle

Source
pub struct Triangle<T> {
    pub a: Point<T>,
    pub b: Point<T>,
    pub c: Point<T>,
}
Expand description

A triangles is a polygon with three edges and three vertices. It is one of the basic shapes in geometry.

§Arguments

  • a:
  • b:
  • c:

returns: Triangle

§Examples

Fields§

§a: Point<T>

The 1st vertex of the triangle.

§b: Point<T>

The 2nd vertex of the triangle.

§c: Point<T>

The 3rd vertex of the triangle.

Implementations§

Source§

impl<T> Triangle<T>

Source

pub fn new<P>(a: P, b: P, c: P) -> Self
where P: Into<Point<T>>,

Create a new triangle from three points.

Source

pub fn from_mesh(vertexes: &[Point<T>], index: TriangleIndex) -> Self
where T: Clone,

Create a triangle from a mesh and a triangles index.

Source§

impl<T> Triangle<T>
where T: Clone + AddAssign + Real,

Source

pub fn is_congruent(&self) -> bool

Returns true if the triangle is equilateral.

Source

pub fn is_isosceles(&self) -> bool

Returns true if the triangle is equilateral.

Source

pub fn perimeter(&self) -> T

Returns the perimeter of the triangle.

Source

pub fn area(&self) -> T

Returns the area of the triangles.

Source

pub fn inscribed_circle(&self) -> Circle<T>

Get the inscribed circle of the triangles

Source

pub fn circumscribed_circle(&self) -> Circle<T>

Get the circumscribed circle of the triangles.

Trait Implementations§

Source§

impl<T: Clone> Clone for Triangle<T>

Source§

fn clone(&self) -> Triangle<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for Triangle<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Float> EuclideanDistance<T, Triangle<T>> for Point<T>

Source§

fn euclidean_distance(&self, rhs: &Triangle<T>) -> T

Source§

fn euclidean_squared(&self, rhs: &Triangle<T>) -> T

It is especially suitable when only the length needs to be compared Read more
Source§

impl<T> Projective<T> for Triangle<T>
where T: Float,

Source§

fn transform(&mut self, matrix: &[&T; 9])

Transform by a 3×3 matrix. Read more
Source§

fn translate(&mut self, x: &T, y: &T)

Transform by length $\delta x, \delta y$. Read more
Source§

fn translate_x(&mut self, x: &T)

Transform by length $\delta x$. Read more
Source§

fn translate_y(&mut self, y: &T)

Transform by length $\delta y$. Read more
Source§

fn rotate(&mut self, angle: &T)

Transform by rotate degree $\alpha$. Read more
Source§

fn rotate_point(&mut self, point: &[&T; 2], angle: &T)

Transform by rotate with a point $\alpha$. Read more
Source§

fn scale(&mut self, x: &T, y: &T)

Transform by scale $x, y$. Read more
Source§

fn scale_x(&mut self, x: &T)

Transform by scale $x$. Read more
Source§

fn scale_y(&mut self, y: &T)

Transform by scale $y$. Read more
Source§

fn reflect(&mut self, x: &T, y: &T)

Transform by skew $x, y$.
Source§

fn reflect_x(&mut self)

Transform by skew $x$.
Source§

fn reflect_y(&mut self)

Transform by skew $y$.
Source§

fn skew(&mut self, a: &T, b: &T)

Transform by angle $\alpha, \beta$. Read more
Source§

fn skew_x(&mut self, a: &T)

Transform by angle $\alpha$. Read more
Source§

fn skew_y(&mut self, b: &T)

Transform by angle $\beta$. Read more
Source§

impl<T> Shape2D for Triangle<T>
where T: Clone + PartialOrd + Num,

Source§

type Value = T

The value type of the shape.
Source§

type VertexIterator<'a> = IntoIter<Point<T>> where T: 'a

The value type of the shape.
Source§

type LineIterator<'a> = IntoIter<Line<T>> where T: 'a

The value type of the shape.
Source§

fn is_valid(&self) -> bool

Returns true if the shape is valid and in normal form.
Source§

fn boundary(&self) -> Rectangle<Self::Value>

Returns the boundary of the shape.
Source§

fn vertices<'a>(&'a self, _: usize) -> Self::VertexIterator<'a>

Returns the owned vertices of the shape. Read more
Source§

fn edges<'a>(&'a self, _: usize) -> Self::LineIterator<'a>

Returns the owned edges of the shape.
Source§

fn normalize(&mut self) -> bool

Returns true if the shape successfully normalized.
Source§

impl<T> TryFrom<&Polygon<T>> for Triangle<T>
where T: Clone,

Source§

type Error = ()

The type returned in the event of a conversion error.
Source§

fn try_from(value: &Polygon<T>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<T, P> TryFrom<(P, P, P)> for Triangle<T>
where Point<T>: From<P>, T: Num + Clone + PartialOrd,

Source§

type Error = ()

The type returned in the event of a conversion error.
Source§

fn try_from(value: (P, P, P)) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<T> Freeze for Triangle<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Triangle<T>
where T: RefUnwindSafe,

§

impl<T> Send for Triangle<T>
where T: Send,

§

impl<T> Sync for Triangle<T>
where T: Sync,

§

impl<T> Unpin for Triangle<T>
where T: Unpin,

§

impl<T> UnwindSafe for Triangle<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V