From b52d8e002303ba436b75cdb9c7015689a008aa78 Mon Sep 17 00:00:00 2001 From: oguzhankoral Date: Wed, 17 Jul 2024 11:00:31 +0200 Subject: [PATCH] Remove value prop from Point object --- src/Speckle.Objects/Geometry/Point.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/Speckle.Objects/Geometry/Point.cs b/src/Speckle.Objects/Geometry/Point.cs index 776ace05..751ea5d0 100644 --- a/src/Speckle.Objects/Geometry/Point.cs +++ b/src/Speckle.Objects/Geometry/Point.cs @@ -43,20 +43,6 @@ public Point(double x, double y, double z = 0d, string units = Units.Meters, str public Point(Vector vector) : this(vector.x, vector.y, vector.z, vector.units, vector.applicationId) { } - /// - /// Gets or sets the coordinates of the - /// - [Obsolete("Use x,y,z properties instead", true)] - public List value - { - set - { - x = value[0]; - y = value[1]; - z = value.Count > 2 ? value[2] : 0; - } - } - /// /// The x coordinate of the point. ///