0028316: Coding Rules - Elimilate confusing aliases of Standard_Real type in V3d_View
[occt.git] / src / Prs3d / Prs3d_ArrowAspect.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #include <Prs3d_ArrowAspect.hxx>
16
17 #include <Prs3d_InvalidAngle.hxx>
18
19 IMPLEMENT_STANDARD_RTTIEXT(Prs3d_ArrowAspect, Prs3d_BasicAspect)
20
21 // =======================================================================
22 // function : Prs3d_ArrowAspect
23 // purpose  :
24 // =======================================================================
25 Prs3d_ArrowAspect::Prs3d_ArrowAspect()
26 : myArrowAspect (new Graphic3d_AspectLine3d (Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0)),
27   myAngle (M_PI / 180.0 * 10.0),
28   myLength(1.0)
29 {
30   //
31 }
32
33 // =======================================================================
34 // function : Prs3d_ArrowAspect
35 // purpose  :
36 // =======================================================================
37 Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Standard_Real theAngle,
38                                       const Standard_Real theLength)
39 : myArrowAspect (new Graphic3d_AspectLine3d (Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0)),
40   myAngle (theAngle),
41   myLength(theLength)
42 {
43   //
44 }
45
46 // =======================================================================
47 // function : Prs3d_ArrowAspect
48 // purpose  :
49 // =======================================================================
50 Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Handle(Graphic3d_AspectLine3d)& theAspect)
51 : myArrowAspect (theAspect),
52   myAngle (M_PI / 180.0 * 10.0),
53   myLength(1.0)
54 {
55   //
56 }
57
58 // =======================================================================
59 // function : SetAngle
60 // purpose  :
61 // =======================================================================
62 void Prs3d_ArrowAspect::SetAngle (const Standard_Real theAngle)
63 {
64   Prs3d_InvalidAngle_Raise_if (theAngle <= 0.0
65                             || theAngle >= M_PI / 2.0, "Prs3d_ArrowAspect::SetAngle() - angle out of range");
66   myAngle = theAngle;
67 }