FreeCAD/src/Mod/TechDraw/Gui/ZVALUE.h
2016-11-24 14:44:37 -02:00

20 lines
581 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?
const int MATTING = 100;
}
#endif