Add triangulation of polygon
This commit is contained in:
@@ -15,7 +15,7 @@ namespace DataAccess.DTOs
|
||||
public bool Triangulate { get; set; }
|
||||
[JsonProperty("UsersPrestrain")]
|
||||
public IForceTuple UsersPrestrain { get; set; } = new ForceTupleDTO(Guid.NewGuid());
|
||||
[JsonProperty("AutoPrestrain")]
|
||||
[JsonIgnore]
|
||||
public IForceTuple AutoPrestrain { get; set; } = new ForceTupleDTO(Guid.NewGuid());
|
||||
|
||||
public NdmElementDTO(Guid id)
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace DataAccess.DTOs
|
||||
[JsonProperty("Name")]
|
||||
public string? Name { get; set; }
|
||||
[JsonProperty("Shape")]
|
||||
public IShape Shape => shape;
|
||||
public IShape Shape { get => shape; set => shape = value; }
|
||||
[JsonProperty("NdmElement")]
|
||||
public INdmElement NdmElement { get; set; }
|
||||
[JsonProperty("Center")]
|
||||
|
||||
Reference in New Issue
Block a user