Struct shape_core::RegularPolygon
source · [−]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
sourceimpl<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 where
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
sourceimpl<T: Clone> Clone for RegularPolygon<T>
impl<T: Clone> Clone for RegularPolygon<T>
sourcefn clone(&self) -> RegularPolygon<T>
fn clone(&self) -> RegularPolygon<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug> Debug for RegularPolygon<T>
impl<T: Debug> Debug for RegularPolygon<T>
sourceimpl<'de, T> Deserialize<'de> for RegularPolygon<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for RegularPolygon<T> where
T: Deserialize<'de>,
sourcefn 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
sourceimpl<T: Hash> Hash for RegularPolygon<T>
impl<T: Hash> Hash for RegularPolygon<T>
sourceimpl<T: PartialEq> PartialEq<RegularPolygon<T>> for RegularPolygon<T>
impl<T: PartialEq> PartialEq<RegularPolygon<T>> for RegularPolygon<T>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &RegularPolygon<T>) -> bool
fn ne(&self, other: &RegularPolygon<T>) -> bool
This method tests for !=
.
sourceimpl<T> Projective<T> for RegularPolygon<T> where
T: Real + AddAssign,
impl<T> Projective<T> for RegularPolygon<T> where
T: Real + AddAssign,
sourcefn translate_x(&mut self, x: &T)
fn translate_x(&mut self, x: &T)
Transform by length $\delta x$. Read more
sourcefn translate_y(&mut self, y: &T)
fn translate_y(&mut self, y: &T)
Transform by length $\delta y$. Read more
sourceimpl<T> Serialize for RegularPolygon<T> where
T: Serialize,
impl<T> Serialize for RegularPolygon<T> where
T: Serialize,
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more