tune
This commit is contained in:
@@ -103,7 +103,7 @@ Class Vec3d
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">[BsonIgnoreExtraElements]
|
||||
public class Vec3d : IEquatable<Vec3d>, IExpandToBox3d, IBinaryIo, IWriteBin, ICsvRowIo, IEqualityOperators<Vec3d, Vec3d, bool>, IAdditionOperators<Vec3d, Vec3d, Vec3d>, ISubtractionOperators<Vec3d, Vec3d, Vec3d>, IMultiplyOperators<Vec3d, double, Vec3d>, IMultiplyOperators<Vec3d, Mat4d, Vec3d>, IDivisionOperators<Vec3d, double, Vec3d>, IVec<double>, IFormattable</code></pre>
|
||||
public class Vec3d : IEquatable<Vec3d>, IExpandToBox3d, IBinaryIo, IWriteBin, ICsvRowIo, IEqualityOperators<Vec3d, Vec3d, bool>, IAdditionOperators<Vec3d, Vec3d, Vec3d>, ISubtractionOperators<Vec3d, Vec3d, Vec3d>, IMultiplyOperators<Vec3d, double, Vec3d>, IMultiplyOperators<Vec3d, Mat4d, Vec3d>, IDivisionOperators<Vec3d, double, Vec3d>, IVec<double>, IFormattable, IToPresentDto</code></pre>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -133,6 +133,7 @@ public class Vec3d : IEquatable<Vec3d>, IExpandToBox3d, IBinaryIo, IWriteB
|
||||
<div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.numerics.idivisionoperators-3">IDivisionOperators</a><<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>></div>
|
||||
<div><a class="xref" href="Hi.Geom.IVec-1.html">IVec</a><<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a>></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)">
|
||||
|
||||
Reference in New Issue
Block a user