mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
AIS_InteractiveContext - removed the following unused properties: - PreSelectionColor(), DefaultColor(), WasCurrentTouched(), ZDetection(). AIS_InteractiveObject - removed unused property SelectionPriority(). Prs3d_Drawer - removed properties HighlightStyle() and SelectionStyle(). Graphic3d_HighlightStyle has been superseded by Prs3d_Drawer inheriting from new class Graphic3d_PresentationAttributes. Graphic3d_PresentationAttributes (as Graphic3d_HighlightStyle replacement) has been extended with new properties: - ZLayer() defining Z-Layer for highlighting presentation. - DisplayMode() defining display mode for highlighting. StdSelect_BRepSelectionTool methods have been corrected to take SelectMgr_EntityOwner instead of StdSelect_BRepOwner. StdSelect_Shape - duplicated field myDrawer has been dropped. AIS_InteractiveObject - myDrawer->Color() is now used instead of myOwnColor, myDrawer->Transparency() instead of myTransparency and myDrawer->ZLayer() instead of myZLayer. PrsMgr_PresentationManager::Unhighlight() now unhighlight all modes. The method taking Mode as argument has been marked deprecated. New enumeration Prs3d_TypeOfHighlight has been introduced defining different highlight types. AIS_InteractiveObject::HighlightStyle() now takes enumeration argument and defines different styles for Global and Local selection. ComesFromDecomposition() property has been moved from StdSelect_BRepOwner to SelectMgr_EntityOwner.
78 lines
1.7 KiB
C++
Executable File
78 lines
1.7 KiB
C++
Executable File
// ISession_Curve.cpp: implementation of the ISession_Curve class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "ISession_Curve.h"
|
|
#include <Prs3d_LineAspect.hxx>
|
|
#include <StdPrs_Curve.hxx>
|
|
#include <GeomAdaptor_Curve.hxx>
|
|
#include <Prs3d_Drawer.hxx>
|
|
#include <Prs3d_ArrowAspect.hxx>
|
|
|
|
|
|
//
|
|
// Foreach ancestors, we add a IMPLEMENT_STANDARD_SUPERTYPE and
|
|
// a IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY macro.
|
|
// We must respect the order: from the direct ancestor class
|
|
// to the base class.
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
ISession_Curve::ISession_Curve(const Handle(Geom_Curve)& aCurve)
|
|
:AIS_InteractiveObject(),myCurve(aCurve)
|
|
{
|
|
}
|
|
|
|
ISession_Curve::~ISession_Curve()
|
|
{
|
|
|
|
}
|
|
void ISession_Curve::Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
|
|
const Handle(Prs3d_Presentation)& aPresentation,
|
|
const Standard_Integer /*aMode*/)
|
|
{
|
|
GeomAdaptor_Curve anAdaptorCurve(myCurve);
|
|
if (hasOwnColor)
|
|
myDrawer->LineAspect()->SetColor (myDrawer->Color());
|
|
myDrawer->Link()->SetDiscretisation(100);
|
|
myDrawer->Link()->SetMaximalParameterValue(500);
|
|
|
|
StdPrs_Curve::Add (aPresentation, anAdaptorCurve, myDrawer);
|
|
}
|
|
|
|
void ISession_Curve::Compute(const Handle(Prs3d_Projector)& aProjector,
|
|
const Handle(Prs3d_Presentation)& aPresentation)
|
|
{
|
|
|
|
}
|
|
|
|
void ISession_Curve::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
|
|
const Standard_Integer aMode)
|
|
{
|
|
}
|
|
|
|
|