tune
This commit is contained in:
@@ -87,6 +87,13 @@
|
||||
<article data-uid="">
|
||||
<h1 id="release-note">Release Note</h1>
|
||||
|
||||
<h2 id="hinc-packages-version-31102">HiNc Packages Version 3.1.102</h2>
|
||||
<ul>
|
||||
<li>Separate resource files (Resource, wwwroot, Doc) to HiNc-Resource nuget package for smaller package size</li>
|
||||
<li>Add <a class="xref" href="../../../api/Hi.MachiningProcs.RuntimeApi.html#Hi_MachiningProcs_RuntimeApi_ScaledFeedPerCycle_">ScaledFeedPerCycle</a> function for scaled feed-per-cycle machining motion resolution</li>
|
||||
<li>Upgrade target framework to .NET 10.0</li>
|
||||
<li>Various code cleanup and improvements</li>
|
||||
</ul>
|
||||
<h2 id="hinc-packages-version-31100">HiNc Packages Version 3.1.100</h2>
|
||||
<ul>
|
||||
<li>Refactor project architecture: split runtime functions from <a class="xref" href="../../../api/Hi.MachiningProcs.MachiningProject.html">MachiningProject</a> to <a class="xref" href="../../../api/Hi.MachiningProcs.LocalProjectService.html">LocalProjectService</a> for better separation of concerns</li>
|
||||
|
||||
@@ -130,6 +130,8 @@
|
||||
<ul>
|
||||
<li><strong>每轉進給</strong>(Feed Per Cycle)
|
||||
一步為主軸一轉。</li>
|
||||
<li><strong>縮放每轉進給</strong>(Scaled Feed Per Cycle)
|
||||
一步為主軸一轉乘以縮放係數。例如縮放係數為0.5時,一步為主軸半轉。</li>
|
||||
<li><strong>每刃進給</strong>(Feed Per Tooth)
|
||||
一步為刀刃一轉。</li>
|
||||
<li><strong>固定解析度</strong>(Fixed Resolution)
|
||||
@@ -142,6 +144,7 @@
|
||||
<pre><code class="lang-csharp">MachiningMotionResolution = <運動解析度物件>;
|
||||
|
||||
MachiningMotionResolution = FeedPerCycle;
|
||||
MachiningMotionResolution = ScaledFeedPerCycle(<縮放係數>);
|
||||
MachiningMotionResolution = FeedPerTooth;
|
||||
MachiningMotionResolution = FixedPace(<線性解析度(mm)>, <旋轉解析度(deg)>);
|
||||
</code></pre>
|
||||
@@ -150,6 +153,7 @@ MachiningMotionResolution = FixedPace(<線性解析度(mm)>, <旋轉解
|
||||
<h5>Tip</h5>
|
||||
<p><strong>指令範例</strong></p>
|
||||
<pre><code class="lang-csharp">MachiningMotionResolution = FeedPerCycle;
|
||||
MachiningMotionResolution = ScaledFeedPerCycle(0.5);
|
||||
MachiningMotionResolution = FixedPace(1, 15);
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user