summaryrefslogtreecommitdiff
path: root/src/Prs2d/Prs2d_Drawer.cxx
blob: b546519fbc4d88c3b6d8cde296b42f2bf87fcfc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <Prs2d_Drawer.ixx>

#include <Prs2d_AspectRoot.hxx>

#include <Prs2d_AspectLine.hxx>
#include <Prs2d_AspectText.hxx>

#include <Prs2d_AspectHidingPoly.hxx>
#include <Prs2d_AspectHidingText.hxx>
#include <Prs2d_AspectFramedText.hxx>

#include <Prs2d_DataMapOfAspectRoot.hxx>
#include <Quantity_Color.hxx>
#include <Aspect_LineStyle.hxx>
#include <Aspect_MarkerStyle.hxx>
#include <Aspect_FontStyle.hxx>


#define NUM_ASPECTROOT 29

Prs2d_Drawer::Prs2d_Drawer()

 :  
	myMaxParameterValue( 500000. )
		 
{

 Prs2d_DataMapOfAspectRoot aDataMapAspectRoot(NUM_ASPECTROOT);
 myDataMapAspectRoot = aDataMapAspectRoot;

 InitAspectRootMap();
 
}

Handle(Prs2d_AspectRoot) Prs2d_Drawer::FindAspect( const Prs2d_AspectName anAspectName ) const {

    return myDataMapAspectRoot(anAspectName);

}

void Prs2d_Drawer::SetAspect( const Handle(Prs2d_AspectRoot)& anAspectRoot,
                              const Prs2d_AspectName anAspectName) {

    myDataMapAspectRoot( anAspectName ) = anAspectRoot;
}

void Prs2d_Drawer::InitAspectRootMap() {
 
 Handle(Prs2d_AspectLine) myLineAspect = new Prs2d_AspectLine();
 myDataMapAspectRoot.Bind( Prs2d_AN_LINE, myLineAspect );

 Handle(Prs2d_AspectText)  myTextAspect   = new Prs2d_AspectText();
 myDataMapAspectRoot.Bind( Prs2d_AN_TEXT, myTextAspect );

 Handle(Prs2d_AspectHidingPoly) myHidingPolyAspect = new Prs2d_AspectHidingPoly
       (Quantity_NOC_BLACK, Quantity_NOC_WHITE, Aspect_TOL_SOLID, Aspect_WOL_THIN);
 myDataMapAspectRoot.Bind( Prs2d_AN_HIDINGPOLY, myHidingPolyAspect );
   
 Handle(Prs2d_AspectHidingText) myHidingTextAspect = new Prs2d_AspectHidingText
	   (Quantity_NOC_YELLOW, Quantity_NOC_BLACK, Quantity_NOC_WHITE, 
	    Aspect_WOL_THIN,Aspect_TOF_DEFAULT, 0.0, 1.0, 1.0, Standard_False);
 myDataMapAspectRoot.Bind( Prs2d_AN_HIDINGTEXT, myHidingTextAspect );

 Handle(Prs2d_AspectFramedText) myFramedTextAspect = new Prs2d_AspectFramedText
	   (Quantity_NOC_BLACK, Quantity_NOC_WHITE, Aspect_WOL_THIN, Aspect_TOF_DEFAULT,
		0.0, 1.0, 1.0, Standard_False );
 myDataMapAspectRoot.Bind( Prs2d_AN_FRAMEDTEXT, myFramedTextAspect );

}

void Prs2d_Drawer::SetMaxParameterValue ( const Standard_Real Value ) {
  myMaxParameterValue = Value;
}

Standard_Real Prs2d_Drawer::MaxParameterValue () const {
  return myMaxParameterValue;
}