0023634: Eliminate Polyline and Polygon usage in drawers
[occt.git] / src / Prs3d / Prs3d_DatumAspect.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2012 OPEN CASCADE SAS
3 //
4 // The content of this file is subject to the Open CASCADE Technology Public
5 // License Version 6.5 (the "License"). You may not use the content of this file
6 // except in compliance with the License. Please obtain a copy of the License
7 // at http://www.opencascade.org and read it completely before using this file.
8 //
9 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
10 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
11 //
12 // The Original Code and all software distributed under the License is
13 // distributed on an "AS IS" basis, without warranty of any kind, and the
14 // Initial Developer hereby disclaims all such warranties, including without
15 // limitation, any warranties of merchantability, fitness for a particular
16 // purpose or non-infringement. Please see the License for the specific terms
17 // and conditions governing the rights and limitations under the License.
18
19 #include <Prs3d_DatumAspect.ixx>
20
21 Prs3d_DatumAspect::Prs3d_DatumAspect () {
22
23   myFirstAxisAspect = new Prs3d_LineAspect
24       (Quantity_NOC_PEACHPUFF,Aspect_TOL_SOLID,1.);
25   mySecondAxisAspect = new Prs3d_LineAspect
26       (Quantity_NOC_PEACHPUFF,Aspect_TOL_SOLID,1.);
27   myThirdAxisAspect = new Prs3d_LineAspect
28       (Quantity_NOC_PEACHPUFF,Aspect_TOL_SOLID,1.);
29   myDrawFirstAndSecondAxis = Standard_True;
30   myDrawThirdAxis = Standard_True;
31   myFirstAxisLength = 10.;
32   mySecondAxisLength = 10.;
33   myThirdAxisLength = 10.;
34 }
35
36 Handle(Prs3d_LineAspect) Prs3d_DatumAspect::FirstAxisAspect() const {
37
38   return myFirstAxisAspect;
39 }
40
41 Handle(Prs3d_LineAspect) Prs3d_DatumAspect::SecondAxisAspect()  const {
42
43   return mySecondAxisAspect;
44 }
45
46 Handle(Prs3d_LineAspect) Prs3d_DatumAspect::ThirdAxisAspect()  const {
47
48   return myThirdAxisAspect;
49
50 }
51 Standard_Boolean Prs3d_DatumAspect::DrawFirstAndSecondAxis () const {
52
53   return myDrawFirstAndSecondAxis;
54
55 }
56
57 void Prs3d_DatumAspect::SetDrawFirstAndSecondAxis (const Standard_Boolean draw)
58 {
59   myDrawFirstAndSecondAxis = draw;
60 }
61
62 Standard_Boolean Prs3d_DatumAspect::DrawThirdAxis () const {
63
64   return myDrawThirdAxis;
65
66 }
67
68 void Prs3d_DatumAspect::SetDrawThirdAxis (const Standard_Boolean draw)
69 {
70   myDrawThirdAxis = draw;
71 }
72
73 void Prs3d_DatumAspect::SetAxisLength (const Quantity_Length L1,
74                                        const Quantity_Length L2,
75                                        const Quantity_Length L3) {
76
77   myFirstAxisLength = L1;
78   mySecondAxisLength = L2;
79   myThirdAxisLength = L3;
80 }
81
82
83 Quantity_Length Prs3d_DatumAspect::FirstAxisLength () const {
84
85   return myFirstAxisLength;
86
87 }
88
89 Quantity_Length Prs3d_DatumAspect::SecondAxisLength () const {
90
91   return mySecondAxisLength;
92
93 }
94
95 Quantity_Length Prs3d_DatumAspect::ThirdAxisLength () const {
96
97   return myThirdAxisLength;
98
99 }