#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct PolynomialCurveFit {
#[builder(custom(type = super::CurveFitVariable, convert = Box::new))]
#[serde(rename = "independentVariable")]
independent_variable: Box<super::CurveFitVariable>,
#[builder(custom(type = super::AlignmentConfiguration, convert = Box::new))]
#[serde(rename = "alignmentConfiguration")]
alignment_configuration: Box<super::AlignmentConfiguration>,
#[serde(rename = "degree")]
degree: i32,
#[builder(default, into)]
#[serde(rename = "intercept", skip_serializing_if = "Option::is_none", default)]
#[derive_with(with = conjure_object::private::DoubleWrapper)]
intercept: Option<f64>,
}
impl PolynomialCurveFit {
#[inline]
pub fn new(
independent_variable: super::CurveFitVariable,
alignment_configuration: super::AlignmentConfiguration,
degree: i32,
) -> Self {
Self::builder()
.independent_variable(independent_variable)
.alignment_configuration(alignment_configuration)
.degree(degree)
.build()
}
#[inline]
pub fn independent_variable(&self) -> &super::CurveFitVariable {
&*self.independent_variable
}
#[inline]
pub fn alignment_configuration(&self) -> &super::AlignmentConfiguration {
&*self.alignment_configuration
}
#[inline]
pub fn degree(&self) -> i32 {
self.degree
}
#[inline]
pub fn intercept(&self) -> Option<f64> {
self.intercept.as_ref().map(|o| *o)
}
}