Files
create/src/Mod/TechDraw/Gui/ZVALUE.h
wandererfan 6cb7255c30 Show full width Edges around Section Face
- Section Face was hidding 1/2 of Edge if "Show Section
  Edges" was set to false.
2018-09-26 16:58:52 +02:00

21 lines
612 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 SECTIONFACE = 45;
const int SECTIONHATCH = 46;
const int EDGE = 50;
const int VERTEX = 60;
const int DIMENSION = 110;
const int SECTIONLINE = 80; //TODO: change to "DECORATION"? section lines, symmetry lines, etc?
const int HIGHLIGHT = 80;
const int MATTING = 100;
}
#endif