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<RegularPolygon<T>> for RegularPolygon<T>
impl<T: PartialEq> PartialEq<RegularPolygon<T>> 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 ==
.