pub struct BezierAlgebraicRationalCoordinateImage { /* private fields */ }Expand description
One exact rational-function coordinate image at an algebraic parameter.
Implementations§
Source§impl BezierAlgebraicRationalCoordinateImage
impl BezierAlgebraicRationalCoordinateImage
Sourcepub fn numerator_coefficients(&self) -> &[Real]
pub fn numerator_coefficients(&self) -> &[Real]
Returns numerator coefficients in ascending powers of the source Bezier parameter.
Sourcepub fn denominator_coefficients(&self) -> &[Real]
pub fn denominator_coefficients(&self) -> &[Real]
Returns denominator coefficients in ascending powers of the source Bezier parameter.
Sourcepub const fn report(&self) -> &AlgebraicRootRationalImageReport
pub const fn report(&self) -> &AlgebraicRootRationalImageReport
Returns the exact rational-image report produced by hypersolve.
Sourcepub fn representation(&self) -> Option<&AlgebraicRootRepresentation>
pub fn representation(&self) -> Option<&AlgebraicRootRepresentation>
Returns the represented coordinate when the image was constructed.
Trait Implementations§
Source§impl Clone for BezierAlgebraicRationalCoordinateImage
impl Clone for BezierAlgebraicRationalCoordinateImage
Source§fn clone(&self) -> BezierAlgebraicRationalCoordinateImage
fn clone(&self) -> BezierAlgebraicRationalCoordinateImage
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 PartialEq for BezierAlgebraicRationalCoordinateImage
impl PartialEq for BezierAlgebraicRationalCoordinateImage
Source§fn eq(&self, other: &BezierAlgebraicRationalCoordinateImage) -> bool
fn eq(&self, other: &BezierAlgebraicRationalCoordinateImage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BezierAlgebraicRationalCoordinateImage
Auto Trait Implementations§
impl !Freeze for BezierAlgebraicRationalCoordinateImage
impl !RefUnwindSafe for BezierAlgebraicRationalCoordinateImage
impl !Sync for BezierAlgebraicRationalCoordinateImage
impl Send for BezierAlgebraicRationalCoordinateImage
impl Unpin for BezierAlgebraicRationalCoordinateImage
impl UnsafeUnpin for BezierAlgebraicRationalCoordinateImage
impl UnwindSafe for BezierAlgebraicRationalCoordinateImage
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