mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
Porting on the OCCT-6.9.0
This commit is contained in:
parent
2960cb2164
commit
3275e00630
@ -22,6 +22,8 @@
|
||||
#include "CurveCreator_Curve.hxx"
|
||||
#include "CurveCreator_UtilsICurve.hxx"
|
||||
|
||||
#include <Basics_OCCTVersion.hxx>
|
||||
|
||||
#include <GEOMUtils.hxx>
|
||||
|
||||
#include <gp_Pln.hxx>
|
||||
@ -578,8 +580,16 @@ void CurveCreator_Utils::setSelectedPoints( Handle(AIS_InteractiveContext) theCo
|
||||
|
||||
Handle_SelectMgr_Selection aSelection = anAISShape->Selection( AIS_Shape::SelectionMode( TopAbs_VERTEX ) );
|
||||
for( aSelection->Init(); aSelection->More(); aSelection->Next() )
|
||||
{
|
||||
{
|
||||
#if OCC_VERSION_LARGE > 0x06080100
|
||||
const SelectMgr_HSensitiveEntity aHSenEntity = aSelection->Sensitive();
|
||||
if( aHSenEntity.IsNull() )
|
||||
continue;
|
||||
Handle_SelectBasics_SensitiveEntity aSenEntity = aHSenEntity->BaseSensitive();
|
||||
#else
|
||||
Handle_SelectBasics_SensitiveEntity aSenEntity = aSelection->Sensitive();
|
||||
#endif
|
||||
|
||||
Handle_Select3D_SensitivePoint aSenPnt = Handle_Select3D_SensitivePoint::DownCast( aSenEntity );
|
||||
|
||||
gp_Pnt anOwnerPnt = aSenPnt->Point();
|
||||
|
@ -25,6 +25,8 @@
|
||||
//
|
||||
#include "GEOMGUI_OCCSelector.h"
|
||||
|
||||
#include <Basics_OCCTVersion.hxx>
|
||||
|
||||
#include <LightApp_DataSubOwner.h>
|
||||
|
||||
#include <OCCViewer_ViewModel.h>
|
||||
@ -176,7 +178,15 @@ static void getEntityOwners( const Handle(AIS_InteractiveObject)& theObj,
|
||||
Handle(SelectMgr_Selection) sel = theObj->Selection( m );
|
||||
|
||||
for ( sel->Init(); sel->More(); sel->Next() ) {
|
||||
#if OCC_VERSION_LARGE > 0x06080100
|
||||
const SelectMgr_HSensitiveEntity aHSenEntity = sel->Sensitive();
|
||||
if( aHSenEntity.IsNull() )
|
||||
continue;
|
||||
|
||||
Handle(SelectBasics_SensitiveEntity) entity = aHSenEntity->BaseSensitive();
|
||||
#else
|
||||
Handle(SelectBasics_SensitiveEntity) entity = sel->Sensitive();
|
||||
#endif
|
||||
if ( entity.IsNull() )
|
||||
continue;
|
||||
|
||||
|
@ -108,10 +108,17 @@ static void getEntityOwners( const Handle(AIS_InteractiveObject)& theObj,
|
||||
Handle(SelectMgr_Selection) sel = theObj->Selection( m );
|
||||
|
||||
for ( sel->Init(); sel->More(); sel->Next() ) {
|
||||
Handle(SelectBasics_SensitiveEntity) entity = sel->Sensitive();
|
||||
if ( entity.IsNull() )
|
||||
#if OCC_VERSION_LARGE > 0x06080100
|
||||
const SelectMgr_HSensitiveEntity aHSenEntity = sel->Sensitive();
|
||||
if( aHSenEntity.IsNull() )
|
||||
continue;
|
||||
|
||||
Handle(SelectBasics_SensitiveEntity) entity = aHSenEntity->BaseSensitive();
|
||||
#else
|
||||
Handle(SelectBasics_SensitiveEntity) entity = sel->Sensitive();
|
||||
#endif
|
||||
if ( entity.IsNull() )
|
||||
continue;
|
||||
Handle(SelectMgr_EntityOwner) owner =
|
||||
Handle(SelectMgr_EntityOwner)::DownCast(entity->OwnerId());
|
||||
if ( !owner.IsNull() )
|
||||
|
Loading…
Reference in New Issue
Block a user