FreeCAD/src/Mod/TechDraw/Gui/ZVALUE.h
WandererFan b27a526cd6 remove unnecessary includes
remove obs code
remove obs initializations
2016-09-28 20:24:47 -04:00

19 lines
552 B
C++

#ifndef _TECHDRAW_ZVALUE_
#define _TECHDRAW_ZVALUE_
namespace ZVALUE {
const int BACKGROUND = -999999;
const int TEMPLATE = -1000;
const int SVGTEMPLATE = -500;
//border/label const int border = 0;
const int FACE = 10;
const int HATCH = 30;
const int HIDEDGE = 40;
const int EDGE = 50;
const int VERTEX = 60;
const int SECTIONFACE = 65;
const int SECTIONHATCH = 66;
const int DIMENSION = 70;
const int SECTIONLINE = 80; //TODO: change to "DECORATION"? section lines, symmetry lines, etc?
}
#endif