makeReal method

  1. @protected
double makeReal()

Implementation

@protected
double makeReal() {
  final precision = cgm.realPrecision;
  return switch (precision) {
    RealPrecisionType.fixed32 => _makeFixedPoint32(),
    RealPrecisionType.fixed64 => _makeFixedPoint64(),
    RealPrecisionType.floating32 => makeFloatingPoint32(),
    RealPrecisionType.floating64 => _makeFloatingPoint64(),
  };
}