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
@@ -180,35 +180,34 @@ Class HeidenhainBlkFormSyntax
<h2 id="Hi_NcParsers_ParsingSyntaxs_Heidenhain_HeidenhainBlkFormSyntax_examples">Examples</h2>
<p>Input: BLK FORM 0.1 Z X+0 Y+0 Z-40
Output:</p>
<p>#BeforeBuild.UnparsedText: <code>BLK FORM 0.1 Z X+0 Y+0 Z-40</code>
#AfterBuild:</p>
<pre><code class="lang-csharp">{
"BLK FORM": {
"Type": "0.1",
"Axis": "Z",
"X": "+0",
"Y": "+0",
"Z": "-40"
"Parsing": {
"BLK FORM": {
"Type": "0.1", "Axis": "Z",
"X": 0, "Y": 0, "Z": -40
}
}
}</code></pre>
<p>Input: BLK FORM 0.2 X+100 Y+100 Z+0
Output:</p>
<p>#BeforeBuild.UnparsedText: <code>BLK FORM 0.2 X+100 Y+100 Z+0</code>
#AfterBuild:</p>
<pre><code class="lang-csharp">{
"BLK FORM": {
"Type": "0.2",
"X": "+100",
"Y": "+100",
"Z": "+0"
"Parsing": {
"BLK FORM": {
"Type": "0.2",
"X": 100, "Y": 100, "Z": 0
}
}
}</code></pre>
<p>Input: BLK FORM CYLINDER Z R50 L105
Output:</p>
<p>#BeforeBuild.UnparsedText: <code>BLK FORM CYLINDER Z R50 L105</code>
#AfterBuild:</p>
<pre><code class="lang-csharp">{
"BLK FORM": {
"Type": "CYLINDER",
"Axis": "Z",
"R": "50",
"L": "105"
"Parsing": {
"BLK FORM": {
"Type": "CYLINDER", "Axis": "Z",
"R": 50, "L": 105
}
}
}</code></pre>