Merge pull request #36 from specklesystems/oguzhan/fix-point-value-getter

Remove the Point value prop getter
This commit is contained in:
Oğuzhan Koral
2024-07-17 09:37:17 +02:00
committed by GitHub
+1 -2
View File
@@ -46,10 +46,9 @@ public class Point : Base, ITransformable<Point>
/// <summary>
/// Gets or sets the coordinates of the <see cref="Point"/>
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore), Obsolete("Use x,y,z properties instead", true)]
[Obsolete("Use x,y,z properties instead", true)]
public List<double> value
{
get => new();
set
{
x = value[0];