1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0030756: Visualization, TKOpenGl - capping plane does not work for ZLayer with non-zero origin

OpenGl_CappingPlaneResource::updateTransform() now takes into account ZLayer origin.

Fixed VT_ProcessKeyPress() passing arbitrary input to Draw::Atoi() leading
to messages in console like "unclosed braces".
This commit is contained in:
kgv 2019-05-29 15:22:10 +03:00 committed by bugmaster
parent 9aceb23df6
commit edc4ba21c4
5 changed files with 74 additions and 57 deletions

View File

@ -17,6 +17,7 @@
#include <OpenGl_CappingPlaneResource.hxx> #include <OpenGl_CappingPlaneResource.hxx>
#include <OpenGl_Context.hxx> #include <OpenGl_Context.hxx>
#include <OpenGl_Vec.hxx> #include <OpenGl_Vec.hxx>
#include <OpenGl_ShaderManager.hxx>
#include <Precision.hxx> #include <Precision.hxx>
IMPLEMENT_STANDARD_RTTIEXT(OpenGl_CappingPlaneResource,OpenGl_Resource) IMPLEMENT_STANDARD_RTTIEXT(OpenGl_CappingPlaneResource,OpenGl_Resource)
@ -99,10 +100,10 @@ OpenGl_CappingPlaneResource::~OpenGl_CappingPlaneResource()
// function : Update // function : Update
// purpose : // purpose :
// ======================================================================= // =======================================================================
void OpenGl_CappingPlaneResource::Update (const Handle(OpenGl_Context)& , void OpenGl_CappingPlaneResource::Update (const Handle(OpenGl_Context)& theCtx,
const Handle(Graphic3d_Aspects)& theObjAspect) const Handle(Graphic3d_Aspects)& theObjAspect)
{ {
updateTransform(); updateTransform (theCtx);
updateAspect (theObjAspect); updateAspect (theObjAspect);
} }
@ -179,55 +180,47 @@ void OpenGl_CappingPlaneResource::updateAspect (const Handle(Graphic3d_Aspects)&
// function : updateTransform // function : updateTransform
// purpose : // purpose :
// ======================================================================= // =======================================================================
void OpenGl_CappingPlaneResource::updateTransform() void OpenGl_CappingPlaneResource::updateTransform (const Handle(OpenGl_Context)& theCtx)
{ {
const Graphic3d_ClipPlane::Equation& anEquation = myPlaneRoot->GetEquation(); if (myEquationMod == myPlaneRoot->MCountEquation()
if (myEquationMod == myPlaneRoot->MCountEquation()) && myLocalOrigin.IsEqual (theCtx->ShaderManager()->LocalOrigin(), gp::Resolution()))
{ {
return; // nothing to update return; // nothing to update
} }
myEquationMod = myPlaneRoot->MCountEquation();
myLocalOrigin = theCtx->ShaderManager()->LocalOrigin();
const Graphic3d_ClipPlane::Equation& anEq = myPlaneRoot->GetEquation();
const Standard_Real anEqW = theCtx->ShaderManager()->LocalClippingPlaneW (*myPlaneRoot);
// re-evaluate infinite plane transformation matrix // re-evaluate infinite plane transformation matrix
Standard_ShortReal N[3] = const Graphic3d_Vec3 aNorm (anEq.xyz());
{ (Standard_ShortReal)anEquation[0], const Graphic3d_Vec3 T (anEq.xyz() * -anEqW);
(Standard_ShortReal)anEquation[1],
(Standard_ShortReal)anEquation[2] };
Standard_ShortReal T[3] =
{ (Standard_ShortReal)(anEquation[0] * -anEquation[3]),
(Standard_ShortReal)(anEquation[1] * -anEquation[3]),
(Standard_ShortReal)(anEquation[2] * -anEquation[3]) };
Standard_ShortReal L[3] = { 0.0f, 0.0f, 0.0f };
Standard_ShortReal F[3] = { 0.0f, 0.0f, 0.0f };
// project plane normal onto OX to find left vector // project plane normal onto OX to find left vector
Standard_ShortReal aProjLen = const Standard_ShortReal aProjLen = sqrt ((Standard_ShortReal)anEq.xz().SquareModulus());
sqrt ( (Standard_ShortReal)(anEquation[0] * anEquation[0]) Graphic3d_Vec3 aLeft;
+ (Standard_ShortReal)(anEquation[2] * anEquation[2]));
if (aProjLen < ShortRealSmall()) if (aProjLen < ShortRealSmall())
{ {
L[0] = 1.0f; aLeft[0] = 1.0f;
} }
else else
{ {
L[0] = N[2] / aProjLen; aLeft[0] = aNorm[2] / aProjLen;
L[2] = -N[0] / aProjLen; aLeft[2] = -aNorm[0] / aProjLen;
} }
// (-aLeft) x aNorm const Graphic3d_Vec3 F = Graphic3d_Vec3::Cross (-aLeft, aNorm);
F[0] = (-L[1])*N[2] - (-L[2])*N[1];
F[1] = (-L[2])*N[0] - (-L[0])*N[2];
F[2] = (-L[0])*N[1] - (-L[1])*N[0];
myOrientation.mat[0][0] = L[0]; myOrientation.mat[0][0] = aLeft[0];
myOrientation.mat[0][1] = L[1]; myOrientation.mat[0][1] = aLeft[1];
myOrientation.mat[0][2] = L[2]; myOrientation.mat[0][2] = aLeft[2];
myOrientation.mat[0][3] = 0.0f; myOrientation.mat[0][3] = 0.0f;
myOrientation.mat[1][0] = N[0]; myOrientation.mat[1][0] = aNorm[0];
myOrientation.mat[1][1] = N[1]; myOrientation.mat[1][1] = aNorm[1];
myOrientation.mat[1][2] = N[2]; myOrientation.mat[1][2] = aNorm[2];
myOrientation.mat[1][3] = 0.0f; myOrientation.mat[1][3] = 0.0f;
myOrientation.mat[2][0] = F[0]; myOrientation.mat[2][0] = F[0];
@ -239,6 +232,4 @@ void OpenGl_CappingPlaneResource::updateTransform()
myOrientation.mat[3][1] = T[1]; myOrientation.mat[3][1] = T[1];
myOrientation.mat[3][2] = T[2]; myOrientation.mat[3][2] = T[2];
myOrientation.mat[3][3] = 1.0f; myOrientation.mat[3][3] = 1.0f;
myEquationMod = myPlaneRoot->MCountEquation();
} }

View File

@ -72,7 +72,7 @@ public:
private: private:
//! Update precomputed plane orientation matrix. //! Update precomputed plane orientation matrix.
void updateTransform(); void updateTransform (const Handle(OpenGl_Context)& theCtx);
//! Update resources. //! Update resources.
void updateAspect (const Handle(Graphic3d_Aspects)& theObjAspect); void updateAspect (const Handle(Graphic3d_Aspects)& theObjAspect);
@ -84,6 +84,7 @@ private:
OpenGl_Aspects* myAspect; //!< capping face aspect. OpenGl_Aspects* myAspect; //!< capping face aspect.
Handle(Graphic3d_ClipPlane) myPlaneRoot; //!< parent clipping plane structure. Handle(Graphic3d_ClipPlane) myPlaneRoot; //!< parent clipping plane structure.
Handle(Graphic3d_Aspects) myFillAreaAspect;//!< own capping aspect Handle(Graphic3d_Aspects) myFillAreaAspect;//!< own capping aspect
gp_XYZ myLocalOrigin; //!< layer origin
unsigned int myEquationMod; //!< modification counter for plane equation. unsigned int myEquationMod; //!< modification counter for plane equation.
unsigned int myAspectMod; //!< modification counter for aspect. unsigned int myAspectMod; //!< modification counter for aspect.

View File

@ -60,6 +60,18 @@ public:
myHasLocalOrigin = !theOrigin.IsEqual (gp_XYZ(0.0, 0.0, 0.0), gp::Resolution()); myHasLocalOrigin = !theOrigin.IsEqual (gp_XYZ(0.0, 0.0, 0.0), gp::Resolution());
} }
//! Return clipping plane W equation value moved considering local camera transformation.
Standard_Real LocalClippingPlaneW (const Graphic3d_ClipPlane& thePlane) const
{
const Graphic3d_Vec4d& anEq = thePlane.GetEquation();
if (myHasLocalOrigin)
{
const gp_XYZ aPos = thePlane.ToPlane().Position().Location().XYZ() - myLocalOrigin;
return -(anEq.x() * aPos.X() + anEq.y() * aPos.Y() + anEq.z() * aPos.Z());
}
return anEq.w();
}
//! Creates new shader program or re-use shared instance. //! Creates new shader program or re-use shared instance.
//! @param theProxy [IN] program definition //! @param theProxy [IN] program definition
//! @param theShareKey [OUT] sharing key //! @param theShareKey [OUT] sharing key
@ -733,9 +745,7 @@ protected:
aPlaneEq.w() = float(theEq.w()); aPlaneEq.w() = float(theEq.w());
if (myHasLocalOrigin) if (myHasLocalOrigin)
{ {
const gp_XYZ aPos = thePlane.ToPlane().Position().Location().XYZ() - myLocalOrigin; aPlaneEq.w() = float(LocalClippingPlaneW (thePlane));
const Standard_Real aD = -(theEq.x() * aPos.X() + theEq.y() * aPos.Y() + theEq.z() * aPos.Z());
aPlaneEq.w() = float(aD);
} }
++thePlaneId; ++thePlaneId;
} }

View File

@ -2963,14 +2963,11 @@ void VT_ProcessKeyPress (const char* buf_ret)
Draw_Interprete (Draw_ToExitOnCloseView ? "exit" : "vclose"); Draw_Interprete (Draw_ToExitOnCloseView ? "exit" : "vclose");
} }
} }
else else if (*buf_ret >= '0' && *buf_ret <= '7') // Number
{ {
// Number
const Standard_Integer aSelMode = Draw::Atoi (buf_ret); const Standard_Integer aSelMode = Draw::Atoi (buf_ret);
if (aSelMode >= 0 && aSelMode <= 7)
{
bool toEnable = true; bool toEnable = true;
if (const Handle(AIS_InteractiveContext) aCtx = ViewerTest::GetAISContext()) if (const Handle(AIS_InteractiveContext)& aCtx = ViewerTest::GetAISContext())
{ {
AIS_ListOfInteractive aPrsList; AIS_ListOfInteractive aPrsList;
aCtx->DisplayedObjects (aPrsList); aCtx->DisplayedObjects (aPrsList);
@ -2991,7 +2988,6 @@ void VT_ProcessKeyPress (const char* buf_ret)
Draw_Interprete (aCmd.ToCString()); Draw_Interprete (aCmd.ToCString());
} }
} }
}
//============================================================================== //==============================================================================
//function : VT_ProcessExpose //function : VT_ProcessExpose

19
tests/bugs/vis/bug30756 Normal file
View File

@ -0,0 +1,19 @@
puts "============="
puts "0030756: Visualization, TKOpenGl - capping plane does not work for ZLayer with non-zero origin"
puts "============="
pload MODELING VISUALIZATION
box b 1 2 3
vclear
vclose ALL
vinit View1
vzbufftrihedron
vaxo
vdisplay -dispMode 1 b
vfit
vclipplane p 1 -equation 0 1 0 -1 -set -capping 1
if { [vreadpixel 200 200 rgb name] != "GRAY13" } { puts "Error: capping does not work with zero origin" }
vzlayer DEFAULT -origin 0 10 0
if { [vreadpixel 200 200 rgb name] != "GRAY13" } { puts "Error: capping does not work with non-zero origin" }
vdump ${imagedir}/${casename}.png