y property

double get y

Y coordinate.

Returns

  • (double) The y value for this LAM projection.

Implementation

double get y {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_LAM',
    'getY',
  );

  return resultString['result'];
}