x property

double get x

X coordinate.

Returns

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

Implementation

double get x {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_LAM',
    'getX',
  );

  return resultString['result'];
}