forked from nraynaud/webgcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
visucam: added drag knives support (operation-> simple engraving)
- Loading branch information
Showing
5 changed files
with
146 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
<tr> | ||
<th>engraving Z:</th> | ||
<th>Engraving Z:</th> | ||
<td class="input-group input-group-sm">{{number-input numericValue=bottom_Z}} <span | ||
class="input-group-addon">mm</span></td> | ||
</tr> | ||
<tr> | ||
<th>Swivel Drag Knife:</th> | ||
<td class="input-group input-group-sm">{{input type="checkbox" checked=dragknife_corner_action}}</td> | ||
</tr> | ||
{{#if dragknife_corner_action}} | ||
<tr> | ||
<th title="Distance between swivel axis and blade tip, it's often 0.25mm for Roland blades">Blade Offset:</th> | ||
<td class="input-group input-group-sm">{{number-input numericValue=dragknife_swivel_radius}} <span | ||
class="input-group-addon">mm</span></td> | ||
</tr> | ||
<tr> | ||
<th title="Angles smaller than that will just drag the blade directly">Tolerance Angle:</th> | ||
<td class="input-group input-group-sm">{{number-input numericValue=dragknife_min_angle}} <span | ||
class="input-group-addon">°</span></td> | ||
</tr> | ||
{{/if}} |