diff --git a/DUI3-DX/Converters/ArcGIS/Speckle.Converters.ArcGIS3/Utils/CRSoffsetRotation.cs b/DUI3-DX/Converters/ArcGIS/Speckle.Converters.ArcGIS3/Utils/CRSoffsetRotation.cs index 746f11e3a8..55d0ab3d45 100644 --- a/DUI3-DX/Converters/ArcGIS/Speckle.Converters.ArcGIS3/Utils/CRSoffsetRotation.cs +++ b/DUI3-DX/Converters/ArcGIS/Speckle.Converters.ArcGIS3/Utils/CRSoffsetRotation.cs @@ -54,7 +54,7 @@ public SOG.Point OffsetRotateOnSend(SOG.Point point) private readonly SOG.Point ScalePoint(SOG.Point point, string fromUnit, string toUnit) { double scaleFactor = Units.GetConversionFactor(fromUnit, toUnit); - return new SOG.Point(point.x * scaleFactor, point.x * scaleFactor, point.z * scaleFactor, toUnit); + return new SOG.Point(point.x * scaleFactor, point.y * scaleFactor, point.z * scaleFactor, toUnit); } private readonly string GetSpeckleUnit(ACG.SpatialReference spatialReference)