Skip to content

Commit e95fe5f

Browse files
committed
changes default property values
1 parent f84cb1d commit e95fe5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ACadSharp/Header/CadHeader.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1739,7 +1739,7 @@ public ZeroHandling DimensionZeroHandling
17391739
/// System variable 3DDWFPREC
17401740
/// </remarks>
17411741
[CadSystemVariable("$3DDWFPREC", 40)]
1742-
public double Dw3DPrecision { get; set; }
1742+
public double Dw3DPrecision { get; set; } = 2.0d;
17431743

17441744
/// <remarks>
17451745
/// System variable DWFFRAME
@@ -1961,7 +1961,7 @@ public double FacetResolution
19611961
/// System variable LENSLENGTH
19621962
/// </remarks>
19631963
[CadSystemVariable("$LENSLENGTH", 40)]
1964-
public double LensLength { get; set; }
1964+
public double LensLength { get; set; } = 50.0d;
19651965

19661966
/// <summary>
19671967
/// Controls whether you can create objects outside the grid limits.
@@ -2829,7 +2829,7 @@ public short SurfaceIsolineCount
28292829
/// System variable PSOLWIDTH
28302830
/// </remarks>
28312831
[CadSystemVariable("$PSOLWIDTH", 40)]
2832-
public double SweptSolidWidth { get; set; }
2832+
public double SweptSolidWidth { get; set; } = 5.0d;
28332833

28342834
/// <summary>
28352835
/// Sets the default text height when creating new text objects.

0 commit comments

Comments
 (0)