/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */usenalgebra::RealField;usenum_traits::{Float, FloatConst};/// A combination of the RealField trait from nalgebra and Float from num_traits
////// The main goal is to provide an interface that can switch between f32 and f64
pubtraitScalar: RealField + Float + FloatConst + Default {}implScalar forf32{}implScalar forf64{}