Struct shape_core::RegularPolygon
source · #[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) -> Selfwhere Point<T>: From<P>,
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 copy 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§fn eq(&self, other: &RegularPolygon<T>) -> bool
fn eq(&self, other: &RegularPolygon<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T> Projective<T> for RegularPolygon<T>where
T: Real + AddAssign,
impl<T> Projective<T> for RegularPolygon<T>where T: Real + AddAssign,
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> StructuralEq for RegularPolygon<T>
impl<T> StructuralPartialEq for RegularPolygon<T>
Auto Trait Implementations§
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