103091658b6cfea3f42904330cdabd53d184fb6a
Stefan Schuermans initial version, DXFs can b...

Stefan Schuermans authored 11 years ago

1) /* drawing (DXF) to G-code (NGC) converter
2)  * Copyright 2013 Stefan Schuermans <stefan@schuermans.info>
Stefan Schuermans license CC-BY-SA --> GPL (m...

Stefan Schuermans authored 11 years ago

3)  * Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
Stefan Schuermans initial version, DXFs can b...

Stefan Schuermans authored 11 years ago

4)  */
5) 
6) #include "settings.h"
7) 
8) /// set some reasonable/safe default settings
9) Settings::Settings():
10)   base_z(0.0),
11)   cut_z(0.0),
12)   cut_z_step(0.1),
Stefan Schuermans add support for dwell time...

Stefan Schuermans authored 11 years ago

13)   dwell_time(0.0),
Stefan Schuermans initial version, DXFs can b...

Stefan Schuermans authored 11 years ago

14)   feed_drill(10.0),
15)   feed_mill(10.0),
Stefan Schuermans add support for cutting a l...

Stefan Schuermans authored 11 years ago

16)   layer_mode(LevelByLevel),
Stefan Schuermans initial version, DXFs can b...

Stefan Schuermans authored 11 years ago

17)   move_z(10.0),
Stefan Schuermans add support for offset in x...

Stefan Schuermans authored 11 years ago

18)   offset_x(0.0),
19)   offset_y(0.0),
Stefan Schuermans configuration of precision

Stefan Schuermans authored 11 years ago

20)   precision(0.001),
Stefan Schuermans typo

Stefan Schuermans authored 11 years ago

21)   rotation_z(0.0),
Stefan Schuermans implement inside cutting (h...

Stefan Schuermans authored 11 years ago

22)   tool_diameter(1.0)