pub struct Circle2 { /* private fields */ }Expand description
A circle in the plane.
Implementations§
Source§impl Circle2
impl Circle2
Sourcepub fn new(frame: Frame2, radius: f64, tol: Tolerances) -> OgeomResult<Self>
pub fn new(frame: Frame2, radius: f64, tol: Tolerances) -> OgeomResult<Self>
A circle of radius centred on frame’s origin.
§Errors
OgeomError::Construction if radius is
not finite and positive.
Sourcepub fn signed_distance_to(&self, p: Point2) -> f64
pub fn signed_distance_to(&self, p: Point2) -> f64
The signed distance from p to the circle, negative inside.
Sourcepub fn contains(&self, p: Point2, tol: Tolerances) -> bool
pub fn contains(&self, p: Point2, tol: Tolerances) -> bool
Whether p lies on the circle within tol.confusion().
Sourcepub fn transformed(&self, t: &Transform2, tol: Tolerances) -> OgeomResult<Self>
pub fn transformed(&self, t: &Transform2, tol: Tolerances) -> OgeomResult<Self>
This circle moved by t.
The frame goes through the transform intact rather than being rebuilt from the centre. The frame fixes where the angular parameter starts, so discarding its orientation would keep the shape and silently renumber every point on it, invisible to a distance check, and wrong for anything holding a parameter.
§Errors
As Circle2::new.
Trait Implementations§
impl Copy for Circle2
impl StructuralPartialEq for Circle2
Auto Trait Implementations§
impl Freeze for Circle2
impl RefUnwindSafe for Circle2
impl Send for Circle2
impl Sync for Circle2
impl Unpin for Circle2
impl UnsafeUnpin for Circle2
impl UnwindSafe for Circle2
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,
impl<T> Scalar for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.