BlinkenArea - GitList
Repositories
Blog
Wiki
dxfngc
Code
Commits
Branches
Tags
Search
Tree:
3f2ac59
Branches
Tags
master
dxfngc
src
settings.cpp
add support for cutting a layer path-by-path (i.e. each path all the way down, then next path)
Stefan Schuermans
commited
3f2ac59
at 2013-04-22 20:33:49
settings.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 "settings.h" /// set some reasonable/safe default settings Settings::Settings(): base_z(0.0), cut_z(0.0), cut_z_step(0.1), dwell_time(0.0), feed_drill(10.0), feed_mill(10.0), layer_mode(LevelByLevel), move_z(10.0), offset_x(0.0), offset_y(0.0), precision(0.001), tool_diameter(1.0) { }