1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0024723: Not implemented methods in Visual3d and V3d

Removed unused enum V3d_TypeOfProjectionModel and methods V3d_View::SetProjModel(), V3d_View::ProjModel()
This commit is contained in:
abv
2014-09-11 10:07:43 +04:00
committed by bugmaster
parent 9ffd84adf5
commit 1521659a7d
3 changed files with 1 additions and 25 deletions

View File

@@ -159,7 +159,6 @@ To solve the problem (for lack of a better solution) I make 2 passes.
//purpose :
//=============================================================================
V3d_View::V3d_View(const Handle(V3d_Viewer)& VM, const V3d_TypeOfView Type ) :
MyProjModel(V3d_TPM_SCREEN),
MyViewer(VM.operator->()),
MyActiveLights(),
MyViewContext (),
@@ -264,7 +263,6 @@ V3d_View::V3d_View(const Handle(V3d_Viewer)& VM, const V3d_TypeOfView Type ) :
//purpose :
//=============================================================================
V3d_View::V3d_View(const Handle(V3d_Viewer)& theVM,const Handle(V3d_View)& theView) :
MyProjModel(V3d_TPM_SCREEN),
MyViewer(theVM.operator->()),
MyActiveLights(),
MyViewContext (),
@@ -1129,10 +1127,7 @@ void V3d_View::SetProj( const Standard_Real Vx,const Standard_Real Vy, const Sta
myCamera->SetDirection (gp_Dir (Vx, Vy, Vz).Reversed());
if (MyProjModel == V3d_TPM_SCREEN)
{
SetTwist(aTwistBefore);
}
SetTwist(aTwistBefore);
View()->AutoZFit();