BlinkenArea - GitList
Repositories
Blog
Wiki
dxfngc
Code
Commits
Branches
Tags
Search
Tree:
9dc0297
Branches
Tags
master
dxfngc
src
gdwell.cpp
add support for dwell time before each path
Stefan Schuermans
commited
9dc0297
at 2013-04-22 19:59:17
gdwell.cpp
Blame
History
Raw
/* drawing (DXF) to G-code (NGC) converter * Copyright 2013 Stefan Schuermans <stefan@schuermans.info> * Copyleft: CC-BY-SA http://creativecommons.org/licenses/by-sa/3.0/ */ #include <iostream> #include "gcmd.h" #include "gdwell.h" /// constructor GDwell::GDwell(): mSec(1.0) { } /// virtual destructor GDwell::~GDwell() { } /// output G-code command to stream void GDwell::toStrm(std::ostream &strm) const { strm << "G4 P" << mSec << std::endl; }