0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / IGESBasic / IGESBasic_SingularSubfigure.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_XYZ.hxx>
21 #include <IGESBasic_SingularSubfigure.hxx>
22 #include <IGESBasic_SubfigureDef.hxx>
23 #include <Standard_Type.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(IGESBasic_SingularSubfigure,IGESData_IGESEntity)
26
27 IGESBasic_SingularSubfigure::IGESBasic_SingularSubfigure ()    {  }
28
29
30     void  IGESBasic_SingularSubfigure::Init
31   (const Handle(IGESBasic_SubfigureDef)& aSubfigureDef,
32    const gp_XYZ& aTranslation, const Standard_Boolean hasScale,
33    const Standard_Real aScale)
34 {
35   theSubfigureDef = aSubfigureDef;
36   theTranslation  = aTranslation;
37   hasScaleFactor  = hasScale;
38   theScaleFactor  = aScale;
39   InitTypeAndForm(408,0);
40 }
41
42     Handle(IGESBasic_SubfigureDef) IGESBasic_SingularSubfigure::Subfigure () const
43 {
44   return theSubfigureDef;
45 }
46
47     gp_XYZ  IGESBasic_SingularSubfigure::Translation () const
48 {
49   return theTranslation;
50 }
51
52     Standard_Boolean  IGESBasic_SingularSubfigure::HasScaleFactor () const
53 {
54   return hasScaleFactor;
55 }
56
57     Standard_Real  IGESBasic_SingularSubfigure::ScaleFactor () const
58 {
59   return theScaleFactor;
60 }
61
62     gp_XYZ  IGESBasic_SingularSubfigure::TransformedTranslation () const
63 {
64   gp_XYZ tmp = theTranslation;
65   if (HasTransf()) Location().Transforms(tmp);
66   return tmp;
67 }