BlinkenArea - GitList
Repositories
Blog
Wiki
dxfngc
Code
Commits
Branches
Tags
Search
Tree:
be85cfc
Branches
Tags
master
dxfngc
src
gfeed.cpp
initial version, DXFs can be read, some G-code can be produced
Stefan Schuermans
commited
be85cfc
at 2013-01-20 20:53:53
gfeed.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 "gfeed.h" /// constructor GFeed::GFeed(): mFeed(10.0) { } /// virtual destructor GFeed::~GFeed() { } /// output G-code command to stream void GFeed::toStrm(std::ostream &strm) const { strm << "F" << mFeed << std::endl; }