Skip to content

Commit

Permalink
🔥 remove default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco-Pellegrino committed Feb 2, 2023
1 parent 5e3a250 commit f361cee
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions FemDesign.Core/Geometry/Edge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,10 @@ public string Type
set { this._type = RestrictedString.EdgeType(value); }
}
[XmlAttribute("radius")]
[DefaultValue(0)]
public double Radius { get; set; } // optional. double
[XmlAttribute("start_angle")]
[DefaultValue(0)]
public double StartAngle { get; set; } // optional. double
[XmlAttribute("end_angle")]
[DefaultValue(0)]
public double EndAngle { get; set; } // optional. double
[XmlIgnore]
public double Length
Expand Down

0 comments on commit f361cee

Please sign in to comment.