Topocentric constructor

const Topocentric({
  1. required double south,
  2. required double east,
  3. required double normal,
})

The constructor.

Implementation

const Topocentric({
  required this.south,
  required this.east,
  required this.normal,
});