#[repr(C)]pub struct RegularPolygon<T> {
pub sides: usize,
pub center: Point<T>,
pub radius: T,
pub rotate: T,
}
Fields§
§sides: usize
§center: Point<T>
§radius: T
§rotate: T
Implementations§
Source§impl<T> RegularPolygon<T>where
T: Real,
impl<T> RegularPolygon<T>where
T: Real,
pub fn unit(sides: usize) -> Self
pub fn new<P>(sides: usize, center: P, radius: T, rotate: T) -> Self
pub fn vertexes(&self) -> Vec<Point<T>>
pub fn height(&self) -> T
pub fn perimeter(&self) -> T
pub fn central_angle(&self) -> T
pub fn side_length(&self) -> T
pub fn area(&self) -> T
Trait Implementations§
Source§impl<T: Clone> Clone for RegularPolygon<T>
impl<T: Clone> Clone for RegularPolygon<T>
Source§fn clone(&self) -> RegularPolygon<T>
fn clone(&self) -> RegularPolygon<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for RegularPolygon<T>
impl<T: Debug> Debug for RegularPolygon<T>
Source§impl<'de, T> Deserialize<'de> for RegularPolygon<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for RegularPolygon<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T: Hash> Hash for RegularPolygon<T>
impl<T: Hash> Hash for RegularPolygon<T>
Source§impl<T: PartialEq> PartialEq for RegularPolygon<T>
impl<T: PartialEq> PartialEq for RegularPolygon<T>
Source§impl<T> Projective<T> for RegularPolygon<T>
impl<T> Projective<T> for RegularPolygon<T>
Source§impl<T> Serialize for RegularPolygon<T>where
T: Serialize,
impl<T> Serialize for RegularPolygon<T>where
T: Serialize,
impl<T: Copy> Copy for RegularPolygon<T>
impl<T: Eq> Eq for RegularPolygon<T>
impl<T> StructuralPartialEq for RegularPolygon<T>
Auto Trait Implementations§
impl<T> Freeze for RegularPolygon<T>where
T: Freeze,
impl<T> RefUnwindSafe for RegularPolygon<T>where
T: RefUnwindSafe,
impl<T> Send for RegularPolygon<T>where
T: Send,
impl<T> Sync for RegularPolygon<T>where
T: Sync,
impl<T> Unpin for RegularPolygon<T>where
T: Unpin,
impl<T> UnwindSafe for RegularPolygon<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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