0029500: Visualization - AIS_Point dynamic highlighting is not drawn on RedrawImmediate
[occt.git] / src / AIS / AIS_ConcentricRelation.hxx
CommitLineData
42cf5bc1 1// Created on: 1996-12-05
2// Created by: Flore Lantheaume/Odile Olivier
3// Copyright (c) 1996-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _AIS_ConcentricRelation_HeaderFile
18#define _AIS_ConcentricRelation_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <gp_Pnt.hxx>
24#include <Standard_Real.hxx>
25#include <gp_Dir.hxx>
26#include <AIS_Relation.hxx>
27#include <PrsMgr_PresentationManager3d.hxx>
28#include <Standard_Integer.hxx>
29#include <SelectMgr_Selection.hxx>
30class TopoDS_Shape;
31class Geom_Plane;
32class Prs3d_Presentation;
33class Prs3d_Projector;
34class Geom_Transformation;
35
36
37class AIS_ConcentricRelation;
38DEFINE_STANDARD_HANDLE(AIS_ConcentricRelation, AIS_Relation)
39
40//! A framework to define a constraint by a relation of
41//! concentricity between two or more interactive datums.
42//! The display of this constraint is also defined.
43//! A plane is used to create an axis along which the
44//! relation of concentricity can be extended.
45class AIS_ConcentricRelation : public AIS_Relation
46{
47
48public:
49
50
51 //! Constructs the display object for concentric relations
52 //! between shapes.
53 //! This object is defined by the two shapes, aFShape
54 //! and aSShape and the plane aPlane.
55 //! aPlane is provided to create an axis along which the
56 //! relation of concentricity can be extended.
57 Standard_EXPORT AIS_ConcentricRelation(const TopoDS_Shape& aFShape, const TopoDS_Shape& aSShape, const Handle(Geom_Plane)& aPlane);
58
59 //! computes the presentation according to a point of view
60 //! given by <aProjector>.
61 //! To be Used when the associated degenerated Presentations
62 //! have been transformed by <aTrsf> which is not a Pure
63 //! Translation. The HLR Prs can't be deducted automatically
64 //! WARNING :<aTrsf> must be applied
65 //! to the object to display before computation !!!
66 Standard_EXPORT virtual void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Geom_Transformation)& aTrsf, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
67
68
69
70
92efcf78 71 DEFINE_STANDARD_RTTIEXT(AIS_ConcentricRelation,AIS_Relation)
42cf5bc1 72
73protected:
74
75
76
77
78private:
79
80
81 Standard_EXPORT void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
82
83 Standard_EXPORT void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
84
85 Standard_EXPORT void ComputeTwoEdgesConcentric (const Handle(Prs3d_Presentation)& aPresentationManager);
86
87 Standard_EXPORT void ComputeEdgeVertexConcentric (const Handle(Prs3d_Presentation)& aPresentationManager);
88
89 Standard_EXPORT void ComputeTwoVerticesConcentric (const Handle(Prs3d_Presentation)& aPresentationManager);
90
91 Standard_EXPORT virtual void ComputeSelection (const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) Standard_OVERRIDE;
92
93 gp_Pnt myCenter;
94 Standard_Real myRad;
95 gp_Dir myDir;
96 gp_Pnt myPnt;
97
98
99};
100
101
102
103
104
105
106
107#endif // _AIS_ConcentricRelation_HeaderFile