This commit is contained in:
2025-09-24 09:26:04 +08:00
parent 1dbcb3764d
commit 56fe9c7d74
34 changed files with 390 additions and 175 deletions
@@ -2,9 +2,9 @@
<html>
<head>
<meta charset="utf-8">
<title>Enum CommentMarkEnum | HiAPI-C# 2025 </title>
<title>Enum CommentMark | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Enum CommentMarkEnum | HiAPI-C# 2025 ">
<meta name="title" content="Enum CommentMark | HiAPI-C# 2025 ">
<meta name="description" content="Enumeration of different comment mark types used in NC code.">
<link rel="icon" href="../img/HiAPI.favicon.ico">
@@ -84,13 +84,13 @@
<nav id="breadcrumb"></nav>
</div>
<article data-uid="Hi.Numerical.CommentMarkEnum">
<article data-uid="Hi.Numerical.CommentMark">
<h1 id="Hi_Numerical_CommentMarkEnum" data-uid="Hi.Numerical.CommentMarkEnum" class="text-break">
Enum CommentMarkEnum
<h1 id="Hi_Numerical_CommentMark" data-uid="Hi.Numerical.CommentMark" class="text-break">
Enum CommentMark
</h1>
<div class="facts text-secondary">
@@ -103,7 +103,7 @@ Enum CommentMarkEnum
<div class="markdown conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public enum CommentMarkEnum</code></pre>
<pre><code class="lang-csharp hljs">public enum CommentMark</code></pre>
</div>
@@ -145,19 +145,19 @@ Enum CommentMarkEnum
<h2 id="fields">Fields
</h2>
<dl class="parameters">
<dt id="Hi_Numerical_CommentMarkEnum_DoubleSlash"><code>DoubleSlash = 3</code></dt>
<dt id="Hi_Numerical_CommentMark_DoubleSlash"><code>DoubleSlash = 3</code></dt>
<dd><p>Double slash style comments, e.g. //This is a comment.</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_HeadPercent"><code>HeadPercent = 4</code></dt>
<dt id="Hi_Numerical_CommentMark_HeadPercent"><code>HeadPercent = 4</code></dt>
<dd><p>Percent sign at the beginning style comments, e.g. %This is a comment.</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_Quote"><code>Quote = 1</code></dt>
<dt id="Hi_Numerical_CommentMark_Quote"><code>Quote = 1</code></dt>
<dd><p>Parenthesis style comments, e.g. (This is a comment).</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_Semicolon"><code>Semicolon = 2</code></dt>
<dt id="Hi_Numerical_CommentMark_Semicolon"><code>Semicolon = 2</code></dt>
<dd><p>Semicolon style comments, e.g. ;This is a comment.</p>
</dd>
@@ -177,8 +177,8 @@ Class NcComment
<a id="Hi_Numerical_NcComment__ctor_" data-uid="Hi.Numerical.NcComment.#ctor*"></a>
<h3 id="Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMarkEnum_" data-uid="Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMarkEnum)">
NcComment(string, CommentMarkEnum)
<h3 id="Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMark_" data-uid="Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMark)">
NcComment(string, CommentMark)
</h3>
@@ -187,7 +187,7 @@ Class NcComment
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public NcComment(string content, CommentMarkEnum commentSignEnum)</code></pre>
<pre><code class="lang-csharp hljs">public NcComment(string content, CommentMark commentSignEnum)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -195,7 +195,7 @@ Class NcComment
<dt><code>content</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd><p>The content of the comment without comment marks.</p>
</dd>
<dt><code>commentSignEnum</code> <a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><code>commentSignEnum</code> <a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd><p>The type of comment mark to use.</p>
</dd>
</dl>
@@ -215,10 +215,10 @@ Class NcComment
</h2>
<a id="Hi_Numerical_NcComment_CommentMarkEnum_" data-uid="Hi.Numerical.NcComment.CommentMarkEnum*"></a>
<a id="Hi_Numerical_NcComment_CommentMark_" data-uid="Hi.Numerical.NcComment.CommentMark*"></a>
<h3 id="Hi_Numerical_NcComment_CommentMarkEnum" data-uid="Hi.Numerical.NcComment.CommentMarkEnum">
CommentMarkEnum
<h3 id="Hi_Numerical_NcComment_CommentMark" data-uid="Hi.Numerical.NcComment.CommentMark">
CommentMark
</h3>
@@ -227,7 +227,7 @@ Class NcComment
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public CommentMarkEnum CommentMarkEnum { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public CommentMark CommentMark { get; set; }</code></pre>
</div>
@@ -236,7 +236,7 @@ Class NcComment
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd></dd>
</dl>
@@ -1214,6 +1214,42 @@ Class NcFlagUtil
<a id="Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_" data-uid="Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode*"></a>
<h3 id="Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_System_Collections_BitArray_" data-uid="Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode(System.Collections.BitArray)">
IsOnSimpleMachiningMode(BitArray)
</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 IsOnSimpleMachiningMode(this BitArray ncFlagBitArray)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>ncFlagBitArray</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.bitarray">BitArray</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_Numerical_NcFlagUtil_IsRadiusCompensationEnabled_" data-uid="Hi.Numerical.NcFlagUtil.IsRadiusCompensationEnabled*"></a>
<h3 id="Hi_Numerical_NcFlagUtil_IsRadiusCompensationEnabled_System_Collections_BitArray_" data-uid="Hi.Numerical.NcFlagUtil.IsRadiusCompensationEnabled(System.Collections.BitArray)">
@@ -425,6 +425,120 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_GrabDoubleABC_" data-uid="Hi.Numerical.NcUtil.GrabDoubleABC*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabDoubleABC_System_String__System_Boolean_" data-uid="Hi.Numerical.NcUtil.GrabDoubleABC(System.String@,System.Boolean)">
GrabDoubleABC(ref string, bool)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Vec3d GrabDoubleABC(ref string text, bool enableIntegerShrink)</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>enableIntegerShrink</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcUtil_GrabDoubleXYZ_" data-uid="Hi.Numerical.NcUtil.GrabDoubleXYZ*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabDoubleXYZ_System_String__System_Boolean_" data-uid="Hi.Numerical.NcUtil.GrabDoubleXYZ(System.String@,System.Boolean)">
GrabDoubleXYZ(ref string, bool)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Vec3d GrabDoubleXYZ(ref string text, bool enableIntegerShrink)</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>enableIntegerShrink</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcUtil_GrabFlag_" data-uid="Hi.Numerical.NcUtil.GrabFlag*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabFlag_System_String__System_String_" data-uid="Hi.Numerical.NcUtil.GrabFlag(System.String@,System.String)">
GrabFlag(ref string, string)
</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 GrabFlag(ref string text, string tag)</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>tag</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</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_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@)">
@@ -261,7 +261,7 @@ Enums
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd><p>Enumeration of different comment mark types used in NC code.</p>
</dd>
</dl>
+1 -1
View File
@@ -2304,7 +2304,7 @@
<a href="Hi.Numerical.CncBrand.html" name="" title="CncBrand">CncBrand</a>
</li>
<li>
<a href="Hi.Numerical.CommentMarkEnum.html" name="" title="CommentMarkEnum">CommentMarkEnum</a>
<a href="Hi.Numerical.CommentMark.html" name="" title="CommentMark">CommentMark</a>
</li>
<li>
<a href="Hi.Numerical.CoordinateEntryDisplayee.html" name="" title="CoordinateEntryDisplayee">CoordinateEntryDisplayee</a>
File diff suppressed because one or more lines are too long
@@ -108,9 +108,9 @@
<p>刃磨半徑(Hone Radius)表示刀具銳利程度,為刀刃鋒利處的半徑。一般在 20 ~ 50 um。</p>
<p>用來切削易加工材料的刀具通常刃磨半徑小,如Al6061T6,可以假設為20um;用來切削難加工材料的刀具通常刃磨半徑大,如不鏽鋼,可以假設為50um。</p>
<h3 id="刃形與刃雕-底部刃雕">刃形與刃雕-底部刃雕</h3>
<p>底部刃雕在底部刃為水平或反曲需要設定
鑽刀不用設定底部刃雕,設定側向刃雕就好。
通常只有牛鼻刀要設定底部刃雕。</p>
<p>底部刃雕在底部刃為水平或反曲需要設定,它會作用在有下行切削的段落。</p>
<p>鑽刀不用設定底部刃雕,設定側向刃雕就好。因為鑽刀底部不為水平或反曲,如果特製鑽刀底部為水平或反曲,則需要設定底部刃雕。</p>
<p>通常只有牛鼻刀要設定底部刃雕。注意平銑刀通常不會下行切削,也不應下行切削,但如果工序這麼做了,就需要設定底部刃雕。</p>
</article>
@@ -84,14 +84,22 @@
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<article data-uid="NcOptimization">
<h1 id="nc優化">NC優化</h1>
<p>可同時參考閱讀腳本指令<a class="xref" href="../script/NcOptimization/index.html">NC優化</a></p>
<h2 id="速度平滑化">速度平滑化</h2>
<p>平滑範圍會中止於巨集指令或無法解譯路徑的行指令。</p>
<p><em>速度平滑化</em>會根據當行指令行經路徑長度做加減速限制。
所以<em>速度平滑化</em><em>可重新插補</em>的區域有效;
但是對不可重新插補的區域,雖然仍有加減速限制,但可能因為單行行經路徑過長,使得實際應用上難以發揮作用。</p>
<h2 id="幾何誤差的影響">幾何誤差的影響</h2>
<p>目前的NC優化是基於理想的幾何模型,如果工件為鑄件,或有工件安裝誤差,則需以保守方式設定較大的工件幾何於系統內,,避免系統將有切削區域誤判為無切削區域,從而造成撞刀。</p>
<h2 id="斷刀解決方案">斷刀解決方案</h2>
<p>更改加工路徑降低切寬深 或 以HiNC優化功能調整進給率,將<strong>降伏應力比</strong><strong>主軸最大扭矩比</strong><strong>主軸最大功率比</strong>降至100%以下。</p>
<h2 id="熱崩刃解決方案">熱崩刃解決方案</h2>
<p>在解決斷刀問題的前提下,降低轉速,讓刀刃有充足時間散熱。</p>
<p>注意冷卻液是否對準刀刃影響甚大。</p>
</article>
@@ -91,7 +91,7 @@
<p>完整欄位與即時最新對照請見 <a class="xref" href="../../../../api/Hi.MachiningSteps.MachiningStep.html">MachiningStep</a></p>
<p>若需要評估是否有斷刀風險,亦可參考「<a href="../availability/index.html">評估製程可加工性</a>」。</p>
</blockquote>
<p>步(Step)指仿真中的單次運算,在切削過程中預設為主軸一轉(可透過 &lt;xref:Cmd-Resolution#加工運動解析度&gt; 修改)。</p>
<p>步(Step)指仿真中的單次運算,在切削過程中預設為主軸一轉(可透過 <a class="xref" href="../script/Resolution/index.html#加工運動解析度">仿真解析度</a> 修改)。</p>
<p>本頁彙整模擬每一步(Step)的主要輸出資訊,涵蓋來源行、運動學、載荷、力/力矩、功率、熱與磨耗等,協助快速理解當步的加工狀態。</p>
<p>步資訊包含了兩步之間時間的資料(即從上一步到這一步之間的資料),所以資訊中許多項目為該時間段的簡化資料,依照簡化方式會出現的常見前綴命名有平均數(Avg)、極值(Min,Max)、極值差(Delta)、絕對值最大值(MaxAbs)等。</p>
<h2 id="基本來源資訊">基本來源資訊</h2>
@@ -147,14 +147,12 @@
<li>ThermalStress_MPa / ThermalYieldRatio:熱應力與熱塑刃應力比。</li>
</ul>
<h2 id="磨耗與變形">磨耗與變形</h2>
<p>磨耗模型、評估指標與適用情境,請見「<a href="../technique/wear.html">刀具壽命與磨耗</a>」。</p>
<ul>
<li>延伸閱讀:磨耗模型、評估指標與適用情境,請見「<a href="../technique/wear.html">刀具壽命與磨耗</a>」。</li>
<li>InstantCraterWear_um / AccumulatedCraterWear_um:瞬時/累積月牙洼磨耗。</li>
<li>AccumulatedFlankWearDepth_um / AccumulatedFlankWearWidth_um:累積後刀面磨耗深度/寬度。</li>
<li>Tip/Edge Deflectionum):刀尖與底刃撓度(含最大值與差量),以及 ReCutDepth_um(再切削深度)。</li>
</ul>
<hr>
<p>如需更多欄位與單位、縮寫、格式,請直接查閱 API 參考:<a class="xref" href="../../../../api/Hi.MachiningSteps.MachiningStep.html">MachiningStep</a></p>
</article>
@@ -84,10 +84,11 @@
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<article data-uid="Cmd-NcOptimization">
<h1 id="nc優化">NC優化</h1>
<p>組態在NC仿真前設定,然後執行<strong>輸出優化NC檔</strong>指令。</p>
<p>可同時參考閱讀說明章節<a class="xref" href="../../optimization/index.html">NC優化</a></p>
<h2 id="組態">組態</h2>
<div class="NOTE">
<h5>Note</h5>
@@ -218,23 +219,10 @@ N0160 X-3.555 Y43.338
N0170 X-4.125 Y45.875
...
</code></pre>
</div>
<blockquote>
<p>N0110至N0150前,優化區加速度設為10 <span class="math">\(mm/s^2\)</span>
N0140單行不做優化;
N0150及以後,優化區加速度設為100 <span class="math">\(mm/s^2\)</span>
N0150及以後,優化區切削區域最大進給設為12000 <span class="math">\(mm/min\)</span></p>
</blockquote>
<div class="TIP">
<h5>Tip</h5>
<p><strong>斷刀解決方案</strong></p>
<p>更改加工路徑降低切寬深 或 以HiNC優化功能調整進給率,將<strong>降伏應力比</strong><strong>主軸最大扭矩比</strong><strong>主軸最大功率比</strong>降至100%以下。</p>
</div>
<div class="TIP">
<h5>Tip</h5>
<p><strong>熱崩刃解決方案</strong></p>
<p>在解決斷刀問題的前提下,降低轉速,讓刀刃有充足時間散熱。</p>
<p>注意冷卻液是否對準刀刃影響甚大。</p>
</div>
</article>
@@ -84,7 +84,7 @@
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<article data-uid="Cmd-Resolution">
<h1 id="仿真解析度">仿真解析度</h1>
<p>仿真解析度可分為<a href="../RuntimeGeom/index.html">程序幾何</a><strong>實體解析度</strong>、程序幾何的<strong>顯示解析度</strong><strong>加工運動解析度</strong></p>
@@ -122,6 +122,7 @@
<p>顯示網格是基於實體網格,所以顯示網格不會小於實體網格。</p>
<p>數值設置越大,顯示延遲越長,建議數值不超過1000Mb。</p>
<h2 id="加工運動解析度">加工運動解析度</h2>
<p><a id="MotionResolution"></a></p>
<p><strong>加工運動解析度</strong>(Machining Motion Resolution)決定仿真的每步間隔。
有以下項目可選擇,預設值為<strong>每刃進給</strong></p>
<ul>
File diff suppressed because one or more lines are too long
+4 -4
View File
@@ -10064,17 +10064,17 @@
},
{
"type": "ManagedReference",
"source_relative_path": "api/Hi.Numerical.CommentMarkEnum.yml",
"source_relative_path": "api/Hi.Numerical.CommentMark.yml",
"output": {
".html": {
"relative_path": "api/Hi.Numerical.CommentMarkEnum.html"
"relative_path": "api/Hi.Numerical.CommentMark.html"
}
},
"version": "",
"Uid": null,
"IsMRef": true,
"Title": "Hi.Numerical.CommentMarkEnum",
"Summary": "<p sourcefile=\"api/Hi.Numerical.CommentMarkEnum.yml\" sourcestartlinenumber=\"1\">Enumeration of different comment mark types used in NC code.</p>\n"
"Title": "Hi.Numerical.CommentMark",
"Summary": "<p sourcefile=\"api/Hi.Numerical.CommentMark.yml\" sourcestartlinenumber=\"1\">Enumeration of different comment mark types used in NC code.</p>\n"
},
{
"type": "ManagedReference",
+117 -47
View File
@@ -1,9 +1,15 @@
### YamlMime:XRefMap
sorted: true
references:
- uid: Cmd-NcOptimization
name: NC優化
href: brief/user-guide/zh-Hant/script/NcOptimization/index.html
- uid: Cmd-PlayCsvFile
name: 執行CSV檔
href: brief/user-guide/zh-Hant/script/PlayCsvFile/play-csv-file.html
- uid: Cmd-Resolution
name: 仿真解析度
href: brief/user-guide/zh-Hant/script/Resolution/index.html
- uid: Cmd-WriteStepFiles
name: 輸出步資料檔案
href: brief/user-guide/zh-Hant/script/WriteStepFiles/index.html
@@ -115291,36 +115297,36 @@ references:
commentId: F:Hi.Numerical.CncBrand.Syntec
fullName: Hi.Numerical.CncBrand.Syntec
nameWithType: CncBrand.Syntec
- uid: Hi.Numerical.CommentMarkEnum
name: CommentMarkEnum
href: api/Hi.Numerical.CommentMarkEnum.html
commentId: T:Hi.Numerical.CommentMarkEnum
fullName: Hi.Numerical.CommentMarkEnum
nameWithType: CommentMarkEnum
- uid: Hi.Numerical.CommentMarkEnum.DoubleSlash
- uid: Hi.Numerical.CommentMark
name: CommentMark
href: api/Hi.Numerical.CommentMark.html
commentId: T:Hi.Numerical.CommentMark
fullName: Hi.Numerical.CommentMark
nameWithType: CommentMark
- uid: Hi.Numerical.CommentMark.DoubleSlash
name: DoubleSlash
href: api/Hi.Numerical.CommentMarkEnum.html#Hi_Numerical_CommentMarkEnum_DoubleSlash
commentId: F:Hi.Numerical.CommentMarkEnum.DoubleSlash
fullName: Hi.Numerical.CommentMarkEnum.DoubleSlash
nameWithType: CommentMarkEnum.DoubleSlash
- uid: Hi.Numerical.CommentMarkEnum.HeadPercent
href: api/Hi.Numerical.CommentMark.html#Hi_Numerical_CommentMark_DoubleSlash
commentId: F:Hi.Numerical.CommentMark.DoubleSlash
fullName: Hi.Numerical.CommentMark.DoubleSlash
nameWithType: CommentMark.DoubleSlash
- uid: Hi.Numerical.CommentMark.HeadPercent
name: HeadPercent
href: api/Hi.Numerical.CommentMarkEnum.html#Hi_Numerical_CommentMarkEnum_HeadPercent
commentId: F:Hi.Numerical.CommentMarkEnum.HeadPercent
fullName: Hi.Numerical.CommentMarkEnum.HeadPercent
nameWithType: CommentMarkEnum.HeadPercent
- uid: Hi.Numerical.CommentMarkEnum.Quote
href: api/Hi.Numerical.CommentMark.html#Hi_Numerical_CommentMark_HeadPercent
commentId: F:Hi.Numerical.CommentMark.HeadPercent
fullName: Hi.Numerical.CommentMark.HeadPercent
nameWithType: CommentMark.HeadPercent
- uid: Hi.Numerical.CommentMark.Quote
name: Quote
href: api/Hi.Numerical.CommentMarkEnum.html#Hi_Numerical_CommentMarkEnum_Quote
commentId: F:Hi.Numerical.CommentMarkEnum.Quote
fullName: Hi.Numerical.CommentMarkEnum.Quote
nameWithType: CommentMarkEnum.Quote
- uid: Hi.Numerical.CommentMarkEnum.Semicolon
href: api/Hi.Numerical.CommentMark.html#Hi_Numerical_CommentMark_Quote
commentId: F:Hi.Numerical.CommentMark.Quote
fullName: Hi.Numerical.CommentMark.Quote
nameWithType: CommentMark.Quote
- uid: Hi.Numerical.CommentMark.Semicolon
name: Semicolon
href: api/Hi.Numerical.CommentMarkEnum.html#Hi_Numerical_CommentMarkEnum_Semicolon
commentId: F:Hi.Numerical.CommentMarkEnum.Semicolon
fullName: Hi.Numerical.CommentMarkEnum.Semicolon
nameWithType: CommentMarkEnum.Semicolon
href: api/Hi.Numerical.CommentMark.html#Hi_Numerical_CommentMark_Semicolon
commentId: F:Hi.Numerical.CommentMark.Semicolon
fullName: Hi.Numerical.CommentMark.Semicolon
nameWithType: CommentMark.Semicolon
- uid: Hi.Numerical.CoordinateEntryDisplayee
name: CoordinateEntryDisplayee
href: api/Hi.Numerical.CoordinateEntryDisplayee.html
@@ -118169,15 +118175,15 @@ references:
commentId: T:Hi.Numerical.NcComment
fullName: Hi.Numerical.NcComment
nameWithType: NcComment
- uid: Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMarkEnum)
name: NcComment(string, CommentMarkEnum)
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMarkEnum_
commentId: M:Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMarkEnum)
name.vb: New(String, CommentMarkEnum)
fullName: Hi.Numerical.NcComment.NcComment(string, Hi.Numerical.CommentMarkEnum)
fullName.vb: Hi.Numerical.NcComment.New(String, Hi.Numerical.CommentMarkEnum)
nameWithType: NcComment.NcComment(string, CommentMarkEnum)
nameWithType.vb: NcComment.New(String, CommentMarkEnum)
- uid: Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMark)
name: NcComment(string, CommentMark)
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMark_
commentId: M:Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMark)
name.vb: New(String, CommentMark)
fullName: Hi.Numerical.NcComment.NcComment(string, Hi.Numerical.CommentMark)
fullName.vb: Hi.Numerical.NcComment.New(String, Hi.Numerical.CommentMark)
nameWithType: NcComment.NcComment(string, CommentMark)
nameWithType.vb: NcComment.New(String, CommentMark)
- uid: Hi.Numerical.NcComment.#ctor*
name: NcComment
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment__ctor_
@@ -118188,19 +118194,19 @@ references:
fullName.vb: Hi.Numerical.NcComment.New
nameWithType: NcComment.NcComment
nameWithType.vb: NcComment.New
- uid: Hi.Numerical.NcComment.CommentMarkEnum
name: CommentMarkEnum
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment_CommentMarkEnum
commentId: P:Hi.Numerical.NcComment.CommentMarkEnum
fullName: Hi.Numerical.NcComment.CommentMarkEnum
nameWithType: NcComment.CommentMarkEnum
- uid: Hi.Numerical.NcComment.CommentMarkEnum*
name: CommentMarkEnum
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment_CommentMarkEnum_
commentId: Overload:Hi.Numerical.NcComment.CommentMarkEnum
- uid: Hi.Numerical.NcComment.CommentMark
name: CommentMark
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment_CommentMark
commentId: P:Hi.Numerical.NcComment.CommentMark
fullName: Hi.Numerical.NcComment.CommentMark
nameWithType: NcComment.CommentMark
- uid: Hi.Numerical.NcComment.CommentMark*
name: CommentMark
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment_CommentMark_
commentId: Overload:Hi.Numerical.NcComment.CommentMark
isSpec: "True"
fullName: Hi.Numerical.NcComment.CommentMarkEnum
nameWithType: NcComment.CommentMarkEnum
fullName: Hi.Numerical.NcComment.CommentMark
nameWithType: NcComment.CommentMark
- uid: Hi.Numerical.NcComment.Content
name: Content
href: api/Hi.Numerical.NcComment.html#Hi_Numerical_NcComment_Content
@@ -119591,6 +119597,19 @@ references:
isSpec: "True"
fullName: Hi.Numerical.NcFlagUtil.IsOnArcCommand
nameWithType: NcFlagUtil.IsOnArcCommand
- uid: Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode(System.Collections.BitArray)
name: IsOnSimpleMachiningMode(BitArray)
href: api/Hi.Numerical.NcFlagUtil.html#Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_System_Collections_BitArray_
commentId: M:Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode(System.Collections.BitArray)
fullName: Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode(System.Collections.BitArray)
nameWithType: NcFlagUtil.IsOnSimpleMachiningMode(BitArray)
- uid: Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode*
name: IsOnSimpleMachiningMode
href: api/Hi.Numerical.NcFlagUtil.html#Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_
commentId: Overload:Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode
isSpec: "True"
fullName: Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode
nameWithType: NcFlagUtil.IsOnSimpleMachiningMode
- uid: Hi.Numerical.NcFlagUtil.IsRadiusCompensationEnabled(System.Collections.BitArray)
name: IsRadiusCompensationEnabled(BitArray)
href: api/Hi.Numerical.NcFlagUtil.html#Hi_Numerical_NcFlagUtil_IsRadiusCompensationEnabled_System_Collections_BitArray_
@@ -121641,6 +121660,54 @@ references:
isSpec: "True"
fullName: Hi.Numerical.NcUtil.GrabComment
nameWithType: NcUtil.GrabComment
- uid: Hi.Numerical.NcUtil.GrabDoubleABC(System.String@,System.Boolean)
name: GrabDoubleABC(ref string, bool)
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabDoubleABC_System_String__System_Boolean_
commentId: M:Hi.Numerical.NcUtil.GrabDoubleABC(System.String@,System.Boolean)
name.vb: GrabDoubleABC(String, Boolean)
fullName: Hi.Numerical.NcUtil.GrabDoubleABC(ref string, bool)
fullName.vb: Hi.Numerical.NcUtil.GrabDoubleABC(String, Boolean)
nameWithType: NcUtil.GrabDoubleABC(ref string, bool)
nameWithType.vb: NcUtil.GrabDoubleABC(String, Boolean)
- uid: Hi.Numerical.NcUtil.GrabDoubleABC*
name: GrabDoubleABC
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabDoubleABC_
commentId: Overload:Hi.Numerical.NcUtil.GrabDoubleABC
isSpec: "True"
fullName: Hi.Numerical.NcUtil.GrabDoubleABC
nameWithType: NcUtil.GrabDoubleABC
- uid: Hi.Numerical.NcUtil.GrabDoubleXYZ(System.String@,System.Boolean)
name: GrabDoubleXYZ(ref string, bool)
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabDoubleXYZ_System_String__System_Boolean_
commentId: M:Hi.Numerical.NcUtil.GrabDoubleXYZ(System.String@,System.Boolean)
name.vb: GrabDoubleXYZ(String, Boolean)
fullName: Hi.Numerical.NcUtil.GrabDoubleXYZ(ref string, bool)
fullName.vb: Hi.Numerical.NcUtil.GrabDoubleXYZ(String, Boolean)
nameWithType: NcUtil.GrabDoubleXYZ(ref string, bool)
nameWithType.vb: NcUtil.GrabDoubleXYZ(String, Boolean)
- uid: Hi.Numerical.NcUtil.GrabDoubleXYZ*
name: GrabDoubleXYZ
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabDoubleXYZ_
commentId: Overload:Hi.Numerical.NcUtil.GrabDoubleXYZ
isSpec: "True"
fullName: Hi.Numerical.NcUtil.GrabDoubleXYZ
nameWithType: NcUtil.GrabDoubleXYZ
- uid: Hi.Numerical.NcUtil.GrabFlag(System.String@,System.String)
name: GrabFlag(ref string, string)
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabFlag_System_String__System_String_
commentId: M:Hi.Numerical.NcUtil.GrabFlag(System.String@,System.String)
name.vb: GrabFlag(String, String)
fullName: Hi.Numerical.NcUtil.GrabFlag(ref string, string)
fullName.vb: Hi.Numerical.NcUtil.GrabFlag(String, String)
nameWithType: NcUtil.GrabFlag(ref string, string)
nameWithType.vb: NcUtil.GrabFlag(String, String)
- uid: Hi.Numerical.NcUtil.GrabFlag*
name: GrabFlag
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabFlag_
commentId: Overload:Hi.Numerical.NcUtil.GrabFlag
isSpec: "True"
fullName: Hi.Numerical.NcUtil.GrabFlag
nameWithType: NcUtil.GrabFlag
- uid: Hi.Numerical.NcUtil.GrabHeadPercentComment(System.String,Hi.Numerical.NcComment@)
name: GrabHeadPercentComment(string, out NcComment)
href: api/Hi.Numerical.NcUtil.html#Hi_Numerical_NcUtil_GrabHeadPercentComment_System_String_Hi_Numerical_NcComment__
@@ -134834,6 +134901,9 @@ references:
isSpec: "True"
fullName: HiNc.Grpcs.MachiningProjectGrpcServer.XName
nameWithType: MachiningProjectGrpcServer.XName
- uid: NcOptimization
name: NC優化
href: brief/user-guide/zh-Hant/optimization/index.html
- uid: Sample
name: Sample
href: brief/sample/Sample.html