summaryrefslogtreecommitdiff
path: root/src/IGESGraph/IGESGraph_TextDisplayTemplate.cxx
blob: 361bd2d2b5f55169d1df069e55b0c724d0fab884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
//--------------------------------------------------------------------
//
//  File Name : IGESGraph_TextDisplayTemplate.cxx
//  Date      :
//  Author    : CKY / Contract Toubro-Larsen
//  Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------

#include <IGESGraph_TextDisplayTemplate.ixx>
#include <gp_GTrsf.hxx>


    IGESGraph_TextDisplayTemplate::IGESGraph_TextDisplayTemplate ()    {  }


    void IGESGraph_TextDisplayTemplate::Init
  (const Standard_Real                  aWidth,
   const Standard_Real                  aHeight,
   const Standard_Integer               aFontCode,
   const Handle(IGESGraph_TextFontDef)& aFontEntity,
   const Standard_Real                  aSlantAngle,
   const Standard_Real                  aRotationAngle,
   const Standard_Integer               aMirrorFlag,
   const Standard_Integer               aRotationFlag,
   const gp_XYZ&                        aCorner)
{
  theBoxWidth      = aWidth;
  theBoxHeight     = aHeight;    
  theFontCode      = aFontCode;    
  theFontEntity    = aFontEntity;      
  theSlantAngle    = aSlantAngle;   
  theRotationAngle = aRotationAngle;  
  theMirrorFlag    = aMirrorFlag; 
  theRotateFlag    = aRotationFlag;     
  theCorner        = aCorner;             
  InitTypeAndForm(312,FormNumber());  // FormNumber 0-1 : Incremental status
}

    void  IGESGraph_TextDisplayTemplate::SetIncremental (const Standard_Boolean F)
{
  InitTypeAndForm(312, (F ? 1 : 0));
}


    Standard_Real IGESGraph_TextDisplayTemplate::BoxWidth () const
{
  return theBoxWidth;
}

    Standard_Real IGESGraph_TextDisplayTemplate::BoxHeight () const
{
  return theBoxHeight;
}

    Standard_Boolean IGESGraph_TextDisplayTemplate::IsFontEntity () const
{
  return (! theFontEntity.IsNull());
}

    Standard_Integer IGESGraph_TextDisplayTemplate::FontCode () const
{
  return theFontCode;
}

    Handle(IGESGraph_TextFontDef) IGESGraph_TextDisplayTemplate::FontEntity () const
{
  return theFontEntity;
}

    Standard_Real IGESGraph_TextDisplayTemplate::SlantAngle () const
{
  return theSlantAngle;
}

    Standard_Real IGESGraph_TextDisplayTemplate::RotationAngle () const
{
  return theRotationAngle;
}

    Standard_Integer IGESGraph_TextDisplayTemplate::MirrorFlag () const
{
  return theMirrorFlag;
}

    Standard_Integer IGESGraph_TextDisplayTemplate::RotateFlag () const
{
  return theRotateFlag;
}

    Standard_Boolean IGESGraph_TextDisplayTemplate::IsIncremental () const
{
  return ( FormNumber() == 1 );
}

    gp_Pnt IGESGraph_TextDisplayTemplate::StartingCorner () const
{
  return ( gp_Pnt(theCorner) );
}

    gp_Pnt IGESGraph_TextDisplayTemplate::TransformedStartingCorner () const
{
  gp_XYZ TempXYZ = theCorner;
  if (HasTransf()) Location().Transforms(TempXYZ);
  return ( gp_Pnt(TempXYZ) );
}