Remove the Point value prop getter

This commit is contained in:
oguzhankoral
2024-07-17 09:32:05 +02:00
parent 72b7123f7b
commit 4536ecee87
+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];