0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / IGESDimen / IGESDimen_BasicDimension.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_Pnt2d.hxx>
20 #include <gp_XY.hxx>
21 #include <IGESDimen_BasicDimension.hxx>
22 #include <Standard_Type.hxx>
23
24 IMPLEMENT_STANDARD_RTTIEXT(IGESDimen_BasicDimension,IGESData_IGESEntity)
25
26 IGESDimen_BasicDimension::IGESDimen_BasicDimension ()    {  }
27
28     void  IGESDimen_BasicDimension::Init
29   (const Standard_Integer nbPropVal, 
30    const gp_XY& thell, const gp_XY& thelr,
31    const gp_XY& theur, const gp_XY& theul)
32 {
33   theNbPropertyValues = nbPropVal;
34   theLowerLeft  = thell;
35   theLowerRight = thelr;
36   theUpperRight = theur;
37   theUpperLeft  = theul;
38   InitTypeAndForm(406,31);
39 }
40
41
42     Standard_Integer  IGESDimen_BasicDimension::NbPropertyValues () const 
43 {
44   return theNbPropertyValues;
45 }
46
47     gp_Pnt2d  IGESDimen_BasicDimension::LowerLeft () const 
48 {
49   gp_Pnt2d g(theLowerLeft);
50   return g;
51 }
52
53
54     gp_Pnt2d  IGESDimen_BasicDimension::LowerRight () const 
55 {
56   gp_Pnt2d g(theLowerRight);
57   return g;
58 }
59
60     gp_Pnt2d  IGESDimen_BasicDimension::UpperRight () const 
61 {
62   gp_Pnt2d g(theUpperRight);
63   return g;
64 }
65
66     gp_Pnt2d  IGESDimen_BasicDimension::UpperLeft () const 
67 {
68   gp_Pnt2d g(theUpperLeft);
69   return g;
70 }