This commit is contained in:
2026-01-08 21:07:15 +08:00
parent f7f4fe0aac
commit f81f03cb13
279 changed files with 6575 additions and 5080 deletions
@@ -103,7 +103,7 @@ Class Vec3d
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[BsonIgnoreExtraElements]
public class Vec3d : IEquatable&lt;Vec3d&gt;, IExpandToBox3d, IBinaryIo, IWriteBin, ICsvRowIo, IEqualityOperators&lt;Vec3d, Vec3d, bool&gt;, IAdditionOperators&lt;Vec3d, Vec3d, Vec3d&gt;, ISubtractionOperators&lt;Vec3d, Vec3d, Vec3d&gt;, IMultiplyOperators&lt;Vec3d, double, Vec3d&gt;, IMultiplyOperators&lt;Vec3d, Mat4d, Vec3d&gt;, IDivisionOperators&lt;Vec3d, double, Vec3d&gt;, IVec&lt;double&gt;, IFormattable</code></pre>
public class Vec3d : IEquatable&lt;Vec3d&gt;, IExpandToBox3d, IBinaryIo, IWriteBin, ICsvRowIo, IEqualityOperators&lt;Vec3d, Vec3d, bool&gt;, IAdditionOperators&lt;Vec3d, Vec3d, Vec3d&gt;, ISubtractionOperators&lt;Vec3d, Vec3d, Vec3d&gt;, IMultiplyOperators&lt;Vec3d, double, Vec3d&gt;, IMultiplyOperators&lt;Vec3d, Mat4d, Vec3d&gt;, IDivisionOperators&lt;Vec3d, double, Vec3d&gt;, IVec&lt;double&gt;, IFormattable, IToPresentDto</code></pre>
</div>
@@ -133,6 +133,7 @@ public class Vec3d : IEquatable&lt;Vec3d&gt;, IExpandToBox3d, IBinaryIo, IWriteB
<div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.numerics.idivisionoperators-3">IDivisionOperators</a>&lt;<a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a>, <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a>, <a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a>&gt;</div>
<div><a class="xref" href="Hi.Geom.IVec-1.html">IVec</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a>&gt;</div>
<div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.iformattable">IFormattable</a></div>
<div><a class="xref" href="Hi.Common.IToPresentDto.html">IToPresentDto</a></div>
</dd>
</dl>
@@ -3775,6 +3776,40 @@ Direction 0,1,2 indicate x,y,z respectively.</p>
<a id="Hi_Geom_Vec3d_ToPresentDto_" data-uid="Hi.Geom.Vec3d.ToPresentDto*"></a>
<h3 id="Hi_Geom_Vec3d_ToPresentDto" data-uid="Hi.Geom.Vec3d.ToPresentDto">
ToPresentDto()
</h3>
<div class="markdown level1 summary"><p>Convert Vec3d to presentation DTO (Data Transfer Object) for JSON serialization.
The returned object includes type metadata for web API presentation.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public object ToPresentDto()</code></pre>
</div>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></dt>
<dd><p>DTO object with type, x, y, z properties</p>
</dd>
</dl>
<a id="Hi_Geom_Vec3d_ToString_" data-uid="Hi.Geom.Vec3d.ToString*"></a>
<h3 id="Hi_Geom_Vec3d_ToString" data-uid="Hi.Geom.Vec3d.ToString">
@@ -4010,6 +4045,44 @@ Direction 0,1,2 indicate x,y,z respectively.</p>
<a id="Hi_Geom_Vec3d_TryParseLoose_" data-uid="Hi.Geom.Vec3d.TryParseLoose*"></a>
<h3 id="Hi_Geom_Vec3d_TryParseLoose_System_String_Hi_Geom_Vec3d__" data-uid="Hi.Geom.Vec3d.TryParseLoose(System.String,Hi.Geom.Vec3d@)">
TryParseLoose(string, out Vec3d)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool TryParseLoose(string text, out Vec3d dst)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>text</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>dst</code> <a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<a id="Hi_Geom_Vec3d_WriteBin_" data-uid="Hi.Geom.Vec3d.WriteBin*"></a>
<h3 id="Hi_Geom_Vec3d_WriteBin_System_IO_BinaryWriter_" data-uid="Hi.Geom.Vec3d.WriteBin(System.IO.BinaryWriter)">