pub type FittedPcurve = OgeomResult<(PlanarCurve, f64, bool, f64, Option<String>)>;Expand description
The fitted pcurve, its fit error as a length, whether the target was met, the worst distance any sample sat from the surface, and the slop warning to record when that distance is large enough to say out loud.
Aliased Type§
pub enum FittedPcurve {
Ok((PlanarCurve, f64, bool, f64, Option<String>)),
Err(OgeomError),
}Variants§
Ok((PlanarCurve, f64, bool, f64, Option<String>))
Contains the success value
Err(OgeomError)
Contains the error value