Skip to content

Commit ec2bdb2

Browse files
committed
try fix doc build
1 parent 15e4dc4 commit ec2bdb2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Src/AutoGeneratedCode/AllScriptingFilesCombinedIntoOne_DontEditThisFile.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6853,7 +6853,7 @@ type RhinoScriptSyntax private () =
68536853

68546854
/// <summary>Set the document's distance display precision.</summary>
68556855
/// <param name="precision">(int) The distance display precision. If the current distance display mode is Decimal, then precision is the number of decimal places.
6856-
/// Valid values are >= 0 and <= 20.
6856+
/// Valid values are &gt;= 0 and &lt;= 20.
68576857
/// If the current distance display mode is Fractional (including Feet and Inches), then the denominator = (1/2)^precision.
68586858
/// Use UnitDistanceDisplayMode to get the current distance display mode</param>
68596859
/// <returns>(unit) void, nothing.</returns>
@@ -12667,7 +12667,7 @@ type RhinoScriptSyntax private () =
1266712667

1266812668
/// <summary>Checks if a list of 3D points are coplanar.</summary>
1266912669
/// <param name="points">(Point3d seq) 3D points to test</param>
12670-
/// <param name="tolerance">(float) Optional, default value: <c>1.0e-12</c> = RhinoMath.ZeroTolerance
12670+
/// <param name="tolerance">(float) Optional, default value: <c>1.0e-12</c> (RhinoMath.ZeroTolerance)
1267112671
/// Tolerance to use when verifying</param>
1267212672
/// <returns>(bool) True or False.</returns>
1267312673
static member PointsAreCoplanar(points:Point3d seq, [<OPT;DEF(0.0)>]tolerance:float) : bool =

Src/Scripting_Document.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ module AutoOpenDocument =
510510

511511
/// <summary>Set the document's distance display precision.</summary>
512512
/// <param name="precision">(int) The distance display precision. If the current distance display mode is Decimal, then precision is the number of decimal places.
513-
/// Valid values are >= 0 and <= 20.
513+
/// Valid values are &gt;= 0 and &lt;= 20.
514514
/// If the current distance display mode is Fractional (including Feet and Inches), then the denominator = (1/2)^precision.
515515
/// Use UnitDistanceDisplayMode to get the current distance display mode</param>
516516
/// <returns>(unit) void, nothing.</returns>

Src/Scripting_PointVector.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ module AutoOpenPointVector =
182182

183183
/// <summary>Checks if a list of 3D points are coplanar.</summary>
184184
/// <param name="points">(Point3d seq) 3D points to test</param>
185-
/// <param name="tolerance">(float) Optional, default value: <c>1.0e-12</c> = RhinoMath.ZeroTolerance
185+
/// <param name="tolerance">(float) Optional, default value: <c>1.0e-12</c> (RhinoMath.ZeroTolerance)
186186
/// Tolerance to use when verifying</param>
187187
/// <returns>(bool) True or False.</returns>
188188
static member PointsAreCoplanar(points:Point3d seq, [<OPT;DEF(0.0)>]tolerance:float) : bool =

0 commit comments

Comments
 (0)