0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / Adaptor3d / Adaptor3d_HVertex.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-03-25
2// Created by: model
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 _Adaptor3d_HVertex_HeaderFile
18#define _Adaptor3d_HVertex_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <gp_Pnt2d.hxx>
24#include <Standard_Real.hxx>
25#include <TopAbs_Orientation.hxx>
25e59720 26#include <Standard_Transient.hxx>
42cf5bc1 27#include <Standard_Boolean.hxx>
28class gp_Pnt2d;
29class Adaptor2d_HCurve2d;
30
31
32class Adaptor3d_HVertex;
25e59720 33DEFINE_STANDARD_HANDLE(Adaptor3d_HVertex, Standard_Transient)
42cf5bc1 34
35
25e59720 36class Adaptor3d_HVertex : public Standard_Transient
42cf5bc1 37{
38
39public:
40
41
42 Standard_EXPORT Adaptor3d_HVertex();
43
44 Standard_EXPORT Adaptor3d_HVertex(const gp_Pnt2d& P, const TopAbs_Orientation Ori, const Standard_Real Resolution);
45
46 Standard_EXPORT virtual gp_Pnt2d Value();
47
48 Standard_EXPORT virtual Standard_Real Parameter (const Handle(Adaptor2d_HCurve2d)& C);
49
50 //! Parametric resolution (2d).
51 Standard_EXPORT virtual Standard_Real Resolution (const Handle(Adaptor2d_HCurve2d)& C);
52
53 Standard_EXPORT virtual TopAbs_Orientation Orientation();
54
55 Standard_EXPORT virtual Standard_Boolean IsSame (const Handle(Adaptor3d_HVertex)& Other);
56
57
58
59
25e59720 60 DEFINE_STANDARD_RTTIEXT(Adaptor3d_HVertex,Standard_Transient)
42cf5bc1 61
62protected:
63
64
65
66
67private:
68
69
70 gp_Pnt2d myPnt;
71 Standard_Real myTol;
72 TopAbs_Orientation myOri;
73
74
75};
76
77
78
79
80
81
82
83#endif // _Adaptor3d_HVertex_HeaderFile