pub struct BezierAlgebraicPointImage2 { /* private fields */ }Expand description
Exact algebraic image of a Bezier point.
Implementations§
Source§impl BezierAlgebraicPointImage2
impl BezierAlgebraicPointImage2
Sourcepub const fn status(&self) -> BezierAlgebraicImageStatus
pub const fn status(&self) -> BezierAlgebraicImageStatus
Returns the final construction status.
Sourcepub const fn parameter(&self) -> &AlgebraicRootRepresentation
pub const fn parameter(&self) -> &AlgebraicRootRepresentation
Returns the represented Bezier parameter used as the source root.
Sourcepub const fn x(&self) -> Option<&BezierAlgebraicCoordinateImage>
pub const fn x(&self) -> Option<&BezierAlgebraicCoordinateImage>
Returns the x coordinate image when construction reached it.
Sourcepub const fn y(&self) -> Option<&BezierAlgebraicCoordinateImage>
pub const fn y(&self) -> Option<&BezierAlgebraicCoordinateImage>
Returns the y coordinate image when construction reached it.
Trait Implementations§
Source§impl Clone for BezierAlgebraicPointImage2
impl Clone for BezierAlgebraicPointImage2
Source§fn clone(&self) -> BezierAlgebraicPointImage2
fn clone(&self) -> BezierAlgebraicPointImage2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BezierAlgebraicPointImage2
impl Debug for BezierAlgebraicPointImage2
Source§impl PartialEq for BezierAlgebraicPointImage2
impl PartialEq for BezierAlgebraicPointImage2
Source§fn eq(&self, other: &BezierAlgebraicPointImage2) -> bool
fn eq(&self, other: &BezierAlgebraicPointImage2) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BezierAlgebraicPointImage2
Auto Trait Implementations§
impl !Freeze for BezierAlgebraicPointImage2
impl !RefUnwindSafe for BezierAlgebraicPointImage2
impl !Sync for BezierAlgebraicPointImage2
impl Send for BezierAlgebraicPointImage2
impl Unpin for BezierAlgebraicPointImage2
impl UnsafeUnpin for BezierAlgebraicPointImage2
impl UnwindSafe for BezierAlgebraicPointImage2
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