mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
120 lines
3.6 KiB
C++
Executable File
120 lines
3.6 KiB
C++
Executable File
// Created by: CKY / Contract Toubro-Larsen
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
//--------------------------------------------------------------------
|
|
//--------------------------------------------------------------------
|
|
|
|
#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) );
|
|
}
|