Angle.raw constructor

Angle.raw(
  1. num front,
  2. num base
)

Implementation

Angle.raw(this.front, this.base)
    : assert(front != 0 || base != 0, 'Both Front and Base should not be 0'),
      assert(!(front.isNaN || base.isNaN),
          'Neither of Front and Base should be NaN');