Remove the Point value prop getter
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user