1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00
occt/src/IGESDraw/IGESDraw_PerspectiveView.cxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

158 lines
4.3 KiB
C++

// Created by: CKY / Contract Toubro-Larsen
// Copyright (c) 1993-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//--------------------------------------------------------------------
//--------------------------------------------------------------------
#include <gp_GTrsf.hxx>
#include <gp_Pnt.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec.hxx>
#include <gp_XY.hxx>
#include <gp_XYZ.hxx>
#include <IGESData_TransfEntity.hxx>
#include <IGESData_ViewKindEntity.hxx>
#include <IGESDraw_PerspectiveView.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_Type.hxx>
IMPLEMENT_STANDARD_RTTIEXT(IGESDraw_PerspectiveView,IGESData_ViewKindEntity)
IGESDraw_PerspectiveView::IGESDraw_PerspectiveView () { }
// This class inherits from IGESData_ViewKindEntity
void IGESDraw_PerspectiveView::Init
(const Standard_Integer aViewNumber,
const Standard_Real aScaleFactor,
const gp_XYZ& aViewNormalVector,
const gp_XYZ& aViewReferencePoint,
const gp_XYZ& aCenterOfProjection,
const gp_XYZ& aViewUpVector,
const Standard_Real aViewPlaneDistance,
const gp_XY& aTopLeft,
const gp_XY& aBottomRight,
const Standard_Integer aDepthClip,
const Standard_Real aBackPlaneDistance,
const Standard_Real aFrontPlaneDistance)
{
theViewNumber = aViewNumber;
theScaleFactor = aScaleFactor;
theViewNormalVector = aViewNormalVector;
theViewReferencePoint = aViewReferencePoint;
theCenterOfProjection = aCenterOfProjection;
theViewUpVector = aViewUpVector;
theViewPlaneDistance = aViewPlaneDistance;
theTopLeft = aTopLeft;
theBottomRight = aBottomRight;
theDepthClip = aDepthClip;
theBackPlaneDistance = aBackPlaneDistance;
theFrontPlaneDistance = aFrontPlaneDistance;
InitTypeAndForm(410,1);
}
Standard_Boolean IGESDraw_PerspectiveView::IsSingle () const
{
return Standard_True;
}
Standard_Integer IGESDraw_PerspectiveView::NbViews () const
{ return 1; }
Handle(IGESData_ViewKindEntity) IGESDraw_PerspectiveView::ViewItem
(const Standard_Integer) const
{ return Handle(IGESData_ViewKindEntity)::DownCast (This()); }
Standard_Integer IGESDraw_PerspectiveView::ViewNumber () const
{
return theViewNumber;
}
Standard_Real IGESDraw_PerspectiveView::ScaleFactor () const
{
return theScaleFactor;
}
gp_Vec IGESDraw_PerspectiveView::ViewNormalVector () const
{
gp_Vec tempRes(theViewNormalVector);
return tempRes;
}
gp_Pnt IGESDraw_PerspectiveView::ViewReferencePoint () const
{
gp_Pnt tempRes(theViewReferencePoint);
return tempRes;
}
gp_Pnt IGESDraw_PerspectiveView::CenterOfProjection () const
{
gp_Pnt tempRes(theCenterOfProjection);
return tempRes;
}
gp_Vec IGESDraw_PerspectiveView::ViewUpVector () const
{
gp_Vec tempRes(theViewUpVector);
return tempRes;
}
Standard_Real IGESDraw_PerspectiveView::ViewPlaneDistance () const
{
return theViewPlaneDistance;
}
gp_Pnt2d IGESDraw_PerspectiveView::TopLeft () const
{
gp_Pnt2d tempRes(theTopLeft);
return tempRes;
}
gp_Pnt2d IGESDraw_PerspectiveView::BottomRight () const
{
gp_Pnt2d tempRes(theBottomRight);
return tempRes;
}
Standard_Integer IGESDraw_PerspectiveView::DepthClip () const
{
return theDepthClip;
}
Standard_Real IGESDraw_PerspectiveView::BackPlaneDistance () const
{
return theBackPlaneDistance;
}
Standard_Real IGESDraw_PerspectiveView::FrontPlaneDistance () const
{
return theFrontPlaneDistance;
}
Handle(IGESData_TransfEntity) IGESDraw_PerspectiveView::ViewMatrix () const
{
return (Transf());
}
gp_XYZ IGESDraw_PerspectiveView::ModelToView
(const gp_XYZ& coords) const
{
gp_XYZ tempCoords = coords;
Location().Transforms(tempCoords);
return (tempCoords);
}