UNPKG
@nebulaglitch/gcode
Version:
latest (0.0.2)
0.0.2
0.0.1
A library to generate gcode output
github.com/CrimsonBastille/gcode
CrimsonBastille/gcode
@nebulaglitch/gcode
/
dist
/
commands
/
feedvelocity.js
11 lines
(8 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Command
from
'../command.js'
;
class
FeedVelocity
extends
Command
{
constructor
(
velocity =
100
){
super
(
'F'
, velocity); } }
export
{
FeedVelocity
as
default
};
//# sourceMappingURL=feedvelocity.js.map