rename XFactory.Regs to XFactory.Generators.

This commit is contained in:
2026-05-23 21:23:06 +08:00
parent 8b285cc863
commit 058003f395
155 changed files with 16416 additions and 1261 deletions
@@ -181,24 +181,18 @@ Handles: TOOL CALL [ToolId|“ToolName”] [X|Y|Z] [S…] [DL&helli
<h2 id="Hi_NcParsers_ParsingSyntaxs_Heidenhain_HeidenhainToolCallSyntax_examples">Examples</h2>
<p>Input: TOOL CALL 1 Z S5000
Output:</p>
<p>#BeforeBuild.UnparsedText: <code>TOOL CALL 1 Z S5000</code>
#AfterBuild:</p>
<pre><code class="lang-csharp">{
"TOOL CALL": {
"T": "1",
"Axis": "Z",
"S": "5000"
"Parsing": {
"TOOL CALL": { "Axis": "Z", "S": "5000", "T": "1" }
}
}</code></pre>
<p>Input: TOOL CALL &ldquo;MyTool&rdquo; Z S3000 DL+0.5 DR-0.1
Output:</p>
<p>#BeforeBuild.UnparsedText: <code>TOOL CALL &ldquo;MyTool&rdquo; Z S3000 DL+0.5 DR-0.1</code>
#AfterBuild:</p>
<pre><code class="lang-csharp">{
"TOOL CALL": {
"T": "MyTool",
"Axis": "Z",
"S": "3000",
"DL": "+0.5",
"DR": "-0.1"
"Parsing": {
"TOOL CALL": { "Axis": "Z", "S": "3000", "DL": "+0.5", "DR": "-0.1", "T": "MyTool" }
}
}</code></pre>