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. ///