From 66c137062d3997563189d203f895d3eea19cdfcc Mon Sep 17 00:00:00 2001 From: Brendan Date: Tue, 13 Feb 2024 15:57:33 +0100 Subject: [PATCH] Correction nommage variable --- GeoTools/AbsoluteCoordinates.class.st | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GeoTools/AbsoluteCoordinates.class.st b/GeoTools/AbsoluteCoordinates.class.st index a848235..596b34b 100644 --- a/GeoTools/AbsoluteCoordinates.class.st +++ b/GeoTools/AbsoluteCoordinates.class.st @@ -202,11 +202,11 @@ AbsoluteCoordinates >> altitudeInMeters: aNumber [ { #category : #converting } AbsoluteCoordinates >> asGeometryPoint [ - | _coord | - _coord := G2DCoordinates new. - _coord x: self longitudeInDegrees. - _coord y: self latitudeInDegrees. - ^GPoint coordinates: _coord. + | coord | + coord := G2DCoordinates new. + coord x: self longitudeInDegrees. + coord y: self latitudeInDegrees. + ^GPoint coordinates: coord. ] { #category : #converting }