This commit is contained in:
2026-01-16 01:48:39 +08:00
parent f81f03cb13
commit a06e0d3724
710 changed files with 17974 additions and 3075 deletions
@@ -382,8 +382,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_GrabComment_" data-uid="Hi.Numerical.NcUtil.GrabComment*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabComment_System_String_Hi_Numerical_CncBrand_Hi_Numerical_NcComment__" data-uid="Hi.Numerical.NcUtil.GrabComment(System.String,Hi.Numerical.CncBrand,Hi.Numerical.NcComment@)">
GrabComment(string, CncBrand, out NcComment)
<h3 id="Hi_Numerical_NcUtil_GrabComment_System_String_Hi_Numerical_CncBrand_Hi_Numerical_HardNcComment__" data-uid="Hi.Numerical.NcUtil.GrabComment(System.String,Hi.Numerical.CncBrand,Hi.Numerical.HardNcComment@)">
GrabComment(string, CncBrand, out HardNcComment)
</h3>
@@ -392,7 +392,7 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string GrabComment(string srcNcLineText, CncBrand brand, out NcComment ncComment)</code></pre>
<pre><code class="lang-csharp hljs">public static string GrabComment(string srcNcLineText, CncBrand brand, out HardNcComment ncComment)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -403,7 +403,7 @@ Class NcUtil
<dt><code>brand</code> <a class="xref" href="Hi.Numerical.CncBrand.html">CncBrand</a></dt>
<dd><p>The CNC brand to determine the comment style.</p>
</dd>
<dt><code>ncComment</code> <a class="xref" href="Hi.Numerical.NcComment.html">NcComment</a></dt>
<dt><code>ncComment</code> <a class="xref" href="Hi.Numerical.HardNcComment.html">HardNcComment</a></dt>
<dd><p>When this method returns, contains the extracted comment, or null if no comment was found.</p>
</dd>
</dl>
@@ -553,8 +553,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_GrabHeadPercentComment_" data-uid="Hi.Numerical.NcUtil.GrabHeadPercentComment*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabHeadPercentComment_System_String_Hi_Numerical_NcComment__" data-uid="Hi.Numerical.NcUtil.GrabHeadPercentComment(System.String,Hi.Numerical.NcComment@)">
GrabHeadPercentComment(string, out NcComment)
<h3 id="Hi_Numerical_NcUtil_GrabHeadPercentComment_System_String_Hi_Numerical_HardNcComment__" data-uid="Hi.Numerical.NcUtil.GrabHeadPercentComment(System.String,Hi.Numerical.HardNcComment@)">
GrabHeadPercentComment(string, out HardNcComment)
</h3>
@@ -563,7 +563,7 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string GrabHeadPercentComment(string ncLineText, out NcComment ncComment)</code></pre>
<pre><code class="lang-csharp hljs">public static string GrabHeadPercentComment(string ncLineText, out HardNcComment ncComment)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -571,7 +571,7 @@ Class NcUtil
<dt><code>ncLineText</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd><p>The NC line text to process.</p>
</dd>
<dt><code>ncComment</code> <a class="xref" href="Hi.Numerical.NcComment.html">NcComment</a></dt>
<dt><code>ncComment</code> <a class="xref" href="Hi.Numerical.HardNcComment.html">HardNcComment</a></dt>
<dd><p>When this method returns, contains the extracted comment, or null if no comment was found.</p>
</dd>
</dl>
@@ -595,8 +595,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_IsFlagChanging_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging*"></a>
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_Hi_Numerical_NcLine_Hi_Numerical_NcLine_Hi_Numerical_NcFlag_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(Hi.Numerical.NcLine,Hi.Numerical.NcLine,Hi.Numerical.NcFlag)">
IsFlagChanging(NcLine, NcLine, NcFlag)
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_Hi_Numerical_HardNcLine_Hi_Numerical_HardNcLine_Hi_Numerical_NcFlag_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(Hi.Numerical.HardNcLine,Hi.Numerical.HardNcLine,Hi.Numerical.NcFlag)">
IsFlagChanging(HardNcLine, HardNcLine, NcFlag)
</h3>
@@ -605,15 +605,15 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this NcLine curNcLine, NcLine preNcLine, NcFlag ncFlag)</code></pre>
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this HardNcLine curNcLine, HardNcLine preNcLine, NcFlag ncFlag)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The current NcLine</p>
</dd>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The previous NcLine</p>
</dd>
<dt><code>ncFlag</code> <a class="xref" href="Hi.Numerical.NcFlag.html">NcFlag</a></dt>
@@ -640,8 +640,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_IsFlagChanging_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging*"></a>
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_Hi_Numerical_NcLine_Hi_Numerical_NcLine_Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(Hi.Numerical.NcLine,Hi.Numerical.NcLine,Hi.Numerical.NcFlag,System.Boolean)">
IsFlagChanging(NcLine, NcLine, NcFlag, bool)
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_Hi_Numerical_HardNcLine_Hi_Numerical_HardNcLine_Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(Hi.Numerical.HardNcLine,Hi.Numerical.HardNcLine,Hi.Numerical.NcFlag,System.Boolean)">
IsFlagChanging(HardNcLine, HardNcLine, NcFlag, bool)
</h3>
@@ -650,15 +650,15 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this NcLine curNcLine, NcLine preNcLine, NcFlag ncFlag, bool changingOn)</code></pre>
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this HardNcLine curNcLine, HardNcLine preNcLine, NcFlag ncFlag, bool changingOn)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The current NC line.</p>
</dd>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The previous NC line.</p>
</dd>
<dt><code>ncFlag</code> <a class="xref" href="Hi.Numerical.NcFlag.html">NcFlag</a></dt>
@@ -688,8 +688,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_IsFlagChanging_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging*"></a>
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_System_Collections_Generic_LinkedListNode_Hi_Numerical_NcLine__Hi_Numerical_NcFlag_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(System.Collections.Generic.LinkedListNode{Hi.Numerical.NcLine},Hi.Numerical.NcFlag)">
IsFlagChanging(LinkedListNode&lt;NcLine&gt;, NcFlag)
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_System_Collections_Generic_LinkedListNode_Hi_Numerical_HardNcLine__Hi_Numerical_NcFlag_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(System.Collections.Generic.LinkedListNode{Hi.Numerical.HardNcLine},Hi.Numerical.NcFlag)">
IsFlagChanging(LinkedListNode&lt;HardNcLine&gt;, NcFlag)
</h3>
@@ -698,12 +698,12 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this LinkedListNode&lt;NcLine&gt; curNcLineNode, NcFlag ncFlag)</code></pre>
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this LinkedListNode&lt;HardNcLine&gt; curNcLineNode, NcFlag ncFlag)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>curNcLineNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;<a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a>&gt;</dt>
<dt><code>curNcLineNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;<a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a>&gt;</dt>
<dd><p>The current NcLine node</p>
</dd>
<dt><code>ncFlag</code> <a class="xref" href="Hi.Numerical.NcFlag.html">NcFlag</a></dt>
@@ -730,8 +730,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_IsFlagChanging_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging*"></a>
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_System_Collections_Generic_LinkedListNode_Hi_Numerical_NcLine__Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(System.Collections.Generic.LinkedListNode{Hi.Numerical.NcLine},Hi.Numerical.NcFlag,System.Boolean)">
IsFlagChanging(LinkedListNode&lt;NcLine&gt;, NcFlag, bool)
<h3 id="Hi_Numerical_NcUtil_IsFlagChanging_System_Collections_Generic_LinkedListNode_Hi_Numerical_HardNcLine__Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagChanging(System.Collections.Generic.LinkedListNode{Hi.Numerical.HardNcLine},Hi.Numerical.NcFlag,System.Boolean)">
IsFlagChanging(LinkedListNode&lt;HardNcLine&gt;, NcFlag, bool)
</h3>
@@ -740,12 +740,12 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this LinkedListNode&lt;NcLine&gt; curNcLineNode, NcFlag ncFlag, bool changingOn)</code></pre>
<pre><code class="lang-csharp hljs">public static bool IsFlagChanging(this LinkedListNode&lt;HardNcLine&gt; curNcLineNode, NcFlag ncFlag, bool changingOn)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>curNcLineNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;<a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a>&gt;</dt>
<dt><code>curNcLineNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;<a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a>&gt;</dt>
<dd><p>The current NC line node.</p>
</dd>
<dt><code>ncFlag</code> <a class="xref" href="Hi.Numerical.NcFlag.html">NcFlag</a></dt>
@@ -775,8 +775,8 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_IsFlagKeeping_" data-uid="Hi.Numerical.NcUtil.IsFlagKeeping*"></a>
<h3 id="Hi_Numerical_NcUtil_IsFlagKeeping_Hi_Numerical_NcLine_Hi_Numerical_NcLine_Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagKeeping(Hi.Numerical.NcLine,Hi.Numerical.NcLine,Hi.Numerical.NcFlag,System.Boolean)">
IsFlagKeeping(NcLine, NcLine, NcFlag, bool)
<h3 id="Hi_Numerical_NcUtil_IsFlagKeeping_Hi_Numerical_HardNcLine_Hi_Numerical_HardNcLine_Hi_Numerical_NcFlag_System_Boolean_" data-uid="Hi.Numerical.NcUtil.IsFlagKeeping(Hi.Numerical.HardNcLine,Hi.Numerical.HardNcLine,Hi.Numerical.NcFlag,System.Boolean)">
IsFlagKeeping(HardNcLine, HardNcLine, NcFlag, bool)
</h3>
@@ -785,15 +785,15 @@ Class NcUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsFlagKeeping(this NcLine curNcLine, NcLine preNcLine, NcFlag ncFlag, bool keepingOn)</code></pre>
<pre><code class="lang-csharp hljs">public static bool IsFlagKeeping(this HardNcLine curNcLine, HardNcLine preNcLine, NcFlag ncFlag, bool keepingOn)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>curNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The current NC line.</p>
</dd>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.NcLine.html">NcLine</a></dt>
<dt><code>preNcLine</code> <a class="xref" href="Hi.Numerical.HardNcLine.html">HardNcLine</a></dt>
<dd><p>The previous NC line.</p>
</dd>
<dt><code>ncFlag</code> <a class="xref" href="Hi.Numerical.NcFlag.html">NcFlag</a></dt>