sinInverse property Null safety

NormalOperation sinInverse
final

Implementation

static final NormalOperation sinInverse = NormalOperation.floatOnly(
    floatCalc: (Model m) {
      m.resultXF = dart.asin(m.xF) / m.trigMode.scaleFactor;
    },
    complexCalc: (Model m) {
      // Always in radians - see 15C manual p. 131, "For the trigonometric..."
      m.resultXC = m.xC.asin();
    },
    name: 'SIN-1');