LAMProjection constructor

LAMProjection({
  1. required double x,
  2. required double y,
})

Creates a new LAMProjection.

Parameters

  • x: (double) The x coordinate.
  • y: (double) The y coordinate.

Implementation

factory LAMProjection({required double x, required double y}) {
  return LAMProjection._create(x, y);
}