mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030863: Visualization, SelectMgr_ViewerSelector - disabling of View clipping planes is ignored for transformed objects
SelectMgr_ViewerSelector::computeFrustum() - fixed lost clipping planes when creating a new frustum.
This commit is contained in:
parent
caa309aaf4
commit
208dc370ac
@ -109,6 +109,12 @@ public:
|
|||||||
Standard_EXPORT virtual void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& theViewPlanes,
|
Standard_EXPORT virtual void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& theViewPlanes,
|
||||||
const Handle(Graphic3d_SequenceOfHClipPlane)& theObjPlanes) Standard_OVERRIDE;
|
const Handle(Graphic3d_SequenceOfHClipPlane)& theObjPlanes) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Return clipping range.
|
||||||
|
const SelectMgr_ViewClipRange& ViewClipRanges() const { return myViewClipRange; }
|
||||||
|
|
||||||
|
//! Set clipping range.
|
||||||
|
void SetViewClipRanges (const SelectMgr_ViewClipRange& theRange) { myViewClipRange = theRange; }
|
||||||
|
|
||||||
//! A set of helper functions that return rectangular selecting frustum data
|
//! A set of helper functions that return rectangular selecting frustum data
|
||||||
inline const gp_Pnt* GetVertices() const { return myVertices; }
|
inline const gp_Pnt* GetVertices() const { return myVertices; }
|
||||||
|
|
||||||
|
@ -465,3 +465,18 @@ void SelectMgr_SelectingVolumeManager::SetViewClipping (const Handle(Graphic3d_S
|
|||||||
|
|
||||||
mySelectingVolumes[Frustum]->SetViewClipping (theViewPlanes, theObjPlanes);
|
mySelectingVolumes[Frustum]->SetViewClipping (theViewPlanes, theObjPlanes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
// function : SetViewClipping
|
||||||
|
// purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void SelectMgr_SelectingVolumeManager::SetViewClipping (const SelectMgr_SelectingVolumeManager& theOther)
|
||||||
|
{
|
||||||
|
myViewClipPlanes = theOther.ViewClipping();
|
||||||
|
myObjectClipPlanes = theOther.ObjectClipping();
|
||||||
|
if (myActiveSelectionType != Point)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const SelectMgr_RectangularFrustum* aFrOther = reinterpret_cast<const SelectMgr_RectangularFrustum*>(theOther.mySelectingVolumes[Frustum].get());
|
||||||
|
reinterpret_cast<SelectMgr_RectangularFrustum*>(mySelectingVolumes[Frustum].get())->SetViewClipRanges (aFrOther->ViewClipRanges());
|
||||||
|
}
|
||||||
|
@ -178,6 +178,9 @@ public:
|
|||||||
Standard_EXPORT void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& theViewPlanes,
|
Standard_EXPORT void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& theViewPlanes,
|
||||||
const Handle(Graphic3d_SequenceOfHClipPlane)& theObjPlanes);
|
const Handle(Graphic3d_SequenceOfHClipPlane)& theObjPlanes);
|
||||||
|
|
||||||
|
//! Copy clipping planes from another volume manager.
|
||||||
|
Standard_EXPORT void SetViewClipping (const SelectMgr_SelectingVolumeManager& theOther);
|
||||||
|
|
||||||
//! A set of helper functions that return rectangular selecting frustum data
|
//! A set of helper functions that return rectangular selecting frustum data
|
||||||
Standard_EXPORT const gp_Pnt* GetVertices() const;
|
Standard_EXPORT const gp_Pnt* GetVertices() const;
|
||||||
|
|
||||||
|
@ -250,15 +250,14 @@ void SelectMgr_ViewerSelector::checkOverlap (const Handle(Select3D_SensitiveEnti
|
|||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: computeFrustum
|
// function: computeFrustum
|
||||||
// purpose : Internal function that checks if a current selecting frustum
|
// purpose :
|
||||||
// needs to be scaled and transformed for the entity and performs
|
|
||||||
// necessary calculations
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void SelectMgr_ViewerSelector::computeFrustum (const Handle(Select3D_SensitiveEntity)& theEnt,
|
void SelectMgr_ViewerSelector::computeFrustum (const Handle(Select3D_SensitiveEntity)& theEnt,
|
||||||
const SelectMgr_SelectingVolumeManager& theMgr,
|
const SelectMgr_SelectingVolumeManager& theMgrGlobal,
|
||||||
const gp_GTrsf& theInvTrsf,
|
const SelectMgr_SelectingVolumeManager& theMgrObject,
|
||||||
SelectMgr_FrustumCache& theCachedMgrs,
|
const gp_GTrsf& theInvTrsf,
|
||||||
SelectMgr_SelectingVolumeManager& theResMgr)
|
SelectMgr_FrustumCache& theCachedMgrs,
|
||||||
|
SelectMgr_SelectingVolumeManager& theResMgr)
|
||||||
{
|
{
|
||||||
Standard_Integer aScale = isToScaleFrustum (theEnt) ? sensitivity (theEnt) : 1;
|
Standard_Integer aScale = isToScaleFrustum (theEnt) ? sensitivity (theEnt) : 1;
|
||||||
const gp_GTrsf aTrsfMtr = theEnt->HasInitLocation() ? theEnt->InvInitLocation() * theInvTrsf : theInvTrsf;
|
const gp_GTrsf aTrsfMtr = theEnt->HasInitLocation() ? theEnt->InvInitLocation() * theInvTrsf : theInvTrsf;
|
||||||
@ -266,19 +265,26 @@ void SelectMgr_ViewerSelector::computeFrustum (const Handle(Select3D_SensitiveEn
|
|||||||
const Standard_Boolean toTransform = aTrsfMtr.Form() != gp_Identity;
|
const Standard_Boolean toTransform = aTrsfMtr.Form() != gp_Identity;
|
||||||
if (toScale && toTransform)
|
if (toScale && toTransform)
|
||||||
{
|
{
|
||||||
theResMgr = theMgr.ScaleAndTransform (aScale, aTrsfMtr, NULL);
|
theResMgr = theMgrGlobal.ScaleAndTransform (aScale, aTrsfMtr, NULL);
|
||||||
|
theResMgr.SetViewClipping (theMgrObject);
|
||||||
}
|
}
|
||||||
else if (toScale)
|
else if (toScale)
|
||||||
{
|
{
|
||||||
if (!theCachedMgrs.IsBound (aScale))
|
if (!theCachedMgrs.Find (aScale, theResMgr))
|
||||||
{
|
{
|
||||||
theCachedMgrs.Bind (aScale, theMgr.ScaleAndTransform (aScale, gp_Trsf(), NULL));
|
theResMgr = theMgrGlobal.ScaleAndTransform (aScale, gp_Trsf(), NULL);
|
||||||
|
theCachedMgrs.Bind (aScale, theResMgr);
|
||||||
}
|
}
|
||||||
theResMgr = theCachedMgrs.Find (aScale);
|
theResMgr.SetViewClipping (theMgrObject);
|
||||||
}
|
}
|
||||||
else if (toTransform)
|
else if (toTransform)
|
||||||
{
|
{
|
||||||
theResMgr = theMgr.ScaleAndTransform (1, aTrsfMtr, NULL);
|
theResMgr = theMgrGlobal.ScaleAndTransform (1, aTrsfMtr, NULL);
|
||||||
|
theResMgr.SetViewClipping (theMgrObject);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
theResMgr = theMgrObject;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -408,6 +414,7 @@ void SelectMgr_ViewerSelector::traverseObject (const Handle(SelectMgr_Selectable
|
|||||||
Standard_Integer aHead = -1;
|
Standard_Integer aHead = -1;
|
||||||
Standard_Integer aNode = 0; // a root node
|
Standard_Integer aNode = 0; // a root node
|
||||||
SelectMgr_FrustumCache aScaledTrnsfFrustums;
|
SelectMgr_FrustumCache aScaledTrnsfFrustums;
|
||||||
|
SelectMgr_SelectingVolumeManager aTmpMgr;
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
if (!aSensitivesTree->IsOuter (aNode))
|
if (!aSensitivesTree->IsOuter (aNode))
|
||||||
@ -484,8 +491,7 @@ void SelectMgr_ViewerSelector::traverseObject (const Handle(SelectMgr_Selectable
|
|||||||
if (aSensitive->IsActiveForSelection())
|
if (aSensitive->IsActiveForSelection())
|
||||||
{
|
{
|
||||||
const Handle(Select3D_SensitiveEntity)& anEnt = aSensitive->BaseSensitive();
|
const Handle(Select3D_SensitiveEntity)& anEnt = aSensitive->BaseSensitive();
|
||||||
SelectMgr_SelectingVolumeManager aTmpMgr = aMgr;
|
computeFrustum (anEnt, theMgr, aMgr, aInversedTrsf, aScaledTrnsfFrustums, aTmpMgr);
|
||||||
computeFrustum (anEnt, theMgr, aInversedTrsf, aScaledTrnsfFrustums, aTmpMgr);
|
|
||||||
checkOverlap (anEnt, aInversedTrsf, aTmpMgr);
|
checkOverlap (anEnt, aInversedTrsf, aTmpMgr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -290,14 +290,13 @@ private:
|
|||||||
//! removes a Selection from the Selector
|
//! removes a Selection from the Selector
|
||||||
void Remove (const Handle(SelectMgr_Selection)& aSelection);
|
void Remove (const Handle(SelectMgr_Selection)& aSelection);
|
||||||
|
|
||||||
//! Internal function that checks if a current selecting frustum
|
//! Internal function that checks if a current selecting frustum needs to be scaled and transformed for the entity and performs necessary calculations.
|
||||||
//! needs to be scaled and transformed for the entity and performs
|
|
||||||
//! necessary calculations
|
|
||||||
void computeFrustum (const Handle(Select3D_SensitiveEntity)& theEnt,
|
void computeFrustum (const Handle(Select3D_SensitiveEntity)& theEnt,
|
||||||
const SelectMgr_SelectingVolumeManager& theMgr,
|
const SelectMgr_SelectingVolumeManager& theMgrGlobal,
|
||||||
const gp_GTrsf& theInvTrsf,
|
const SelectMgr_SelectingVolumeManager& theMgrObject,
|
||||||
SelectMgr_FrustumCache& theCachedMgrs,
|
const gp_GTrsf& theInvTrsf,
|
||||||
SelectMgr_SelectingVolumeManager& theResMgr);
|
SelectMgr_FrustumCache& theCachedMgrs,
|
||||||
|
SelectMgr_SelectingVolumeManager& theResMgr);
|
||||||
|
|
||||||
|
|
||||||
private: // implementation of deprecated methods
|
private: // implementation of deprecated methods
|
||||||
|
Loading…
x
Reference in New Issue
Block a user