mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0031643: Visualization - Graphic3d_Camera::Copy() raises exception on copying ZNear < 0.0
Graphic3d_Camera::CopyMappingData() now copies ProjectionType at first.
This commit is contained in:
parent
d6fbb2aba4
commit
7e251883e1
@ -139,6 +139,7 @@ Graphic3d_Camera::Graphic3d_Camera (const Handle(Graphic3d_Camera)& theOther)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void Graphic3d_Camera::CopyMappingData (const Handle(Graphic3d_Camera)& theOtherCamera)
|
void Graphic3d_Camera::CopyMappingData (const Handle(Graphic3d_Camera)& theOtherCamera)
|
||||||
{
|
{
|
||||||
|
SetProjectionType (theOtherCamera->ProjectionType());
|
||||||
SetFOVy (theOtherCamera->FOVy());
|
SetFOVy (theOtherCamera->FOVy());
|
||||||
SetFOV2d (theOtherCamera->FOV2d());
|
SetFOV2d (theOtherCamera->FOV2d());
|
||||||
SetZRange (theOtherCamera->ZNear(), theOtherCamera->ZFar());
|
SetZRange (theOtherCamera->ZNear(), theOtherCamera->ZFar());
|
||||||
@ -146,7 +147,6 @@ void Graphic3d_Camera::CopyMappingData (const Handle(Graphic3d_Camera)& theOther
|
|||||||
SetScale (theOtherCamera->Scale());
|
SetScale (theOtherCamera->Scale());
|
||||||
SetZFocus (theOtherCamera->ZFocusType(), theOtherCamera->ZFocus());
|
SetZFocus (theOtherCamera->ZFocusType(), theOtherCamera->ZFocus());
|
||||||
SetIOD (theOtherCamera->GetIODType(), theOtherCamera->IOD());
|
SetIOD (theOtherCamera->GetIODType(), theOtherCamera->IOD());
|
||||||
SetProjectionType (theOtherCamera->ProjectionType());
|
|
||||||
SetTile (theOtherCamera->myTile);
|
SetTile (theOtherCamera->myTile);
|
||||||
|
|
||||||
ResetCustomProjection();
|
ResetCustomProjection();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user