0023634: Eliminate Polyline and Polygon usage in drawers
[occt.git] / src / Prs3d / Prs3d_ArrowAspect.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 #define IMP120100       //GG 01/01/00 Add SetColor() methods
20
21 #include <Prs3d_ArrowAspect.ixx>
22
23 Prs3d_ArrowAspect::Prs3d_ArrowAspect () 
24      : myAngle(M_PI/180.*10), myLength(1.) {
25 #ifdef IMP120100
26   myArrowAspect = 
27         new Graphic3d_AspectLine3d (
28                 Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0);
29 #endif
30 }
31
32
33 Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Quantity_PlaneAngle anAngle,
34                                       const Quantity_Length aLength) 
35      : myAngle(anAngle), myLength(aLength) {
36 #ifdef IMP120100
37   myArrowAspect = 
38         new Graphic3d_AspectLine3d (
39                 Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0);
40 #endif
41 }
42
43 void Prs3d_ArrowAspect::SetAngle ( const Quantity_PlaneAngle anAngle) {
44   Prs3d_InvalidAngle_Raise_if ( anAngle <= 0.  ||
45                               anAngle >= M_PI /2. , "");
46   myAngle = anAngle;
47 }
48 Quantity_PlaneAngle Prs3d_ArrowAspect::Angle () const
49 {
50 return myAngle;
51 }
52
53 void Prs3d_ArrowAspect::SetLength ( const Quantity_Length aLength)
54 {
55   myLength = aLength;
56 }
57 Quantity_Length Prs3d_ArrowAspect::Length () const
58 {
59 return myLength;
60 }
61
62 #ifdef IMP120100
63 void Prs3d_ArrowAspect::SetColor(const Quantity_Color &aColor) {
64   myArrowAspect->SetColor(aColor);
65 }
66
67 void Prs3d_ArrowAspect::SetColor(const Quantity_NameOfColor aColor) {
68   SetColor(Quantity_Color(aColor));
69 }
70
71 Handle(Graphic3d_AspectLine3d) Prs3d_ArrowAspect::Aspect() const {
72   return myArrowAspect;
73 }
74 #endif