0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / IGESDimen / IGESDimen_RadiusDimension.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <gp_GTrsf.hxx>
20 #include <gp_Pnt.hxx>
21 #include <gp_Pnt2d.hxx>
22 #include <gp_XY.hxx>
23 #include <IGESDimen_GeneralNote.hxx>
24 #include <IGESDimen_LeaderArrow.hxx>
25 #include <IGESDimen_RadiusDimension.hxx>
26 #include <Standard_Type.hxx>
27
28 IMPLEMENT_STANDARD_RTTIEXT(IGESDimen_RadiusDimension,IGESData_IGESEntity)
29
30 IGESDimen_RadiusDimension::IGESDimen_RadiusDimension ()    {  }
31
32
33     void IGESDimen_RadiusDimension::Init
34   (const Handle(IGESDimen_GeneralNote)& aNote,
35    const Handle(IGESDimen_LeaderArrow)& anArrow,
36    const gp_XY& arcCenter,
37    const Handle(IGESDimen_LeaderArrow)& anotherArrow)
38 {
39   theNote        = aNote;
40   theLeaderArrow = anArrow;
41   theCenter      = arcCenter;
42   theLeader2     = anotherArrow;
43   if (!anotherArrow.IsNull()) InitTypeAndForm(222, 1);  // 1 admet aussi Null
44   else InitTypeAndForm(222,FormNumber());
45 }
46
47     void IGESDimen_RadiusDimension::InitForm (const Standard_Integer form)
48 {
49   InitTypeAndForm(222,form);
50 }
51
52     Handle(IGESDimen_GeneralNote) IGESDimen_RadiusDimension::Note () const
53 {
54   return theNote;
55 }
56
57     Handle(IGESDimen_LeaderArrow) IGESDimen_RadiusDimension::Leader () const
58 {
59   return theLeaderArrow;
60 }
61
62     Standard_Boolean IGESDimen_RadiusDimension::HasLeader2 () const
63 {
64   return (!theLeader2.IsNull());
65 }
66
67     gp_Pnt2d IGESDimen_RadiusDimension::Center () const
68 {
69   gp_Pnt2d g(theCenter);
70   return g;
71 }
72
73     gp_Pnt IGESDimen_RadiusDimension::TransformedCenter () const
74 {
75   gp_XYZ tmpXYZ(theCenter.X(), theCenter.Y(), theLeaderArrow->ZDepth());
76   if (HasTransf()) Location().Transforms(tmpXYZ);
77   return gp_Pnt(tmpXYZ);
78 }
79
80     Handle(IGESDimen_LeaderArrow) IGESDimen_RadiusDimension::Leader2 () const
81 {
82   return theLeader2;
83 }