FreeCAD/src/Mod/TechDraw/Gui/ZVALUE.h
WandererFan 4cb4e5f04a Create ViewSection from ViewPart
Property name changes
Touch section when View SymbolSection changes
2016-08-26 11:39:03 -03:00

17 lines
407 B
C++

#ifndef _TECHDRAW_ZVALUE_
#define _TECHDRAW_ZVALUE_
namespace ZVALUE {
const int BACKGROUND = -999999;
const int TEMPLATE = -1000;
const int SVGTEMPLATE = -500;
const int FACE = 10;
const int SECTIONFACE = 20;
const int HATCH = 30;
const int HIDEDGE = 40;
const int EDGE = 50;
const int VERTEX = 60;
const int DIMENSION = 70;
const int SECTIONLINE = 80;
}
#endif