mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
148 lines
4.0 KiB
C++
148 lines
4.0 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 <IGESDraw_PerspectiveView.ixx>
|
|
#include <gp_GTrsf.hxx>
|
|
|
|
|
|
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);
|
|
}
|