0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / BRepTopAdaptor / BRepTopAdaptor_HVertex.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-04-01
2// Created by: Modelistation
3// Copyright (c) 1994-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 _BRepTopAdaptor_HVertex_HeaderFile
18#define _BRepTopAdaptor_HVertex_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <TopoDS_Vertex.hxx>
24#include <Adaptor3d_HVertex.hxx>
25#include <Standard_Real.hxx>
26#include <TopAbs_Orientation.hxx>
27#include <Standard_Boolean.hxx>
28class BRepAdaptor_HCurve2d;
29class TopoDS_Vertex;
30class gp_Pnt2d;
31class Adaptor2d_HCurve2d;
32class Adaptor3d_HVertex;
33
34
35class BRepTopAdaptor_HVertex;
36DEFINE_STANDARD_HANDLE(BRepTopAdaptor_HVertex, Adaptor3d_HVertex)
37
38
39class BRepTopAdaptor_HVertex : public Adaptor3d_HVertex
40{
41
42public:
43
44
45 Standard_EXPORT BRepTopAdaptor_HVertex(const TopoDS_Vertex& Vtx, const Handle(BRepAdaptor_HCurve2d)& Curve);
46
47 const TopoDS_Vertex& Vertex() const;
48
49 TopoDS_Vertex& ChangeVertex();
50
51 Standard_EXPORT virtual gp_Pnt2d Value() Standard_OVERRIDE;
52
53 Standard_EXPORT virtual Standard_Real Parameter (const Handle(Adaptor2d_HCurve2d)& C) Standard_OVERRIDE;
54
55 //! Parametric resolution (2d).
56 Standard_EXPORT virtual Standard_Real Resolution (const Handle(Adaptor2d_HCurve2d)& C) Standard_OVERRIDE;
57
58 Standard_EXPORT virtual TopAbs_Orientation Orientation() Standard_OVERRIDE;
59
60 Standard_EXPORT virtual Standard_Boolean IsSame (const Handle(Adaptor3d_HVertex)& Other) Standard_OVERRIDE;
61
62
63
64
92efcf78 65 DEFINE_STANDARD_RTTIEXT(BRepTopAdaptor_HVertex,Adaptor3d_HVertex)
42cf5bc1 66
67protected:
68
69
70
71
72private:
73
74
75 TopoDS_Vertex myVtx;
76 Handle(BRepAdaptor_HCurve2d) myCurve;
77
78
79};
80
81
82#include <BRepTopAdaptor_HVertex.lxx>
83
84
85
86
87
88#endif // _BRepTopAdaptor_HVertex_HeaderFile