0031431: Visualization, PrsMgr_PresentableObject - simplify HLR computing interface
[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 #include <Standard_Dump.hxx>
19
20 IMPLEMENT_STANDARD_RTTIEXT(Prs3d_ArrowAspect, Prs3d_BasicAspect)
21
22 // =======================================================================
23 // function : Prs3d_ArrowAspect
24 // purpose  :
25 // =======================================================================
26 Prs3d_ArrowAspect::Prs3d_ArrowAspect()
27 : myArrowAspect (new Graphic3d_AspectLine3d (Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0)),
28   myAngle (M_PI / 180.0 * 10.0),
29   myLength(1.0)
30 {
31   //
32 }
33
34 // =======================================================================
35 // function : Prs3d_ArrowAspect
36 // purpose  :
37 // =======================================================================
38 Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Standard_Real theAngle,
39                                       const Standard_Real theLength)
40 : myArrowAspect (new Graphic3d_AspectLine3d (Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0)),
41   myAngle (theAngle),
42   myLength(theLength)
43 {
44   //
45 }
46
47 // =======================================================================
48 // function : Prs3d_ArrowAspect
49 // purpose  :
50 // =======================================================================
51 Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Handle(Graphic3d_AspectLine3d)& theAspect)
52 : myArrowAspect (theAspect),
53   myAngle (M_PI / 180.0 * 10.0),
54   myLength(1.0)
55 {
56   //
57 }
58
59 // =======================================================================
60 // function : SetAngle
61 // purpose  :
62 // =======================================================================
63 void Prs3d_ArrowAspect::SetAngle (const Standard_Real theAngle)
64 {
65   Prs3d_InvalidAngle_Raise_if (theAngle <= 0.0
66                             || theAngle >= M_PI / 2.0, "Prs3d_ArrowAspect::SetAngle() - angle out of range");
67   myAngle = theAngle;
68 }
69
70 // =======================================================================
71 // function : DumpJson
72 // purpose  :
73 // =======================================================================
74 void Prs3d_ArrowAspect::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
75 {
76   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
77
78   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myArrowAspect.get())
79   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myAngle)
80   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myLength)
81 }