0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_Pave.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-11-14
2// Created by: Jean Yves LEBEY
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 _TopOpeBRepBuild_Pave_HeaderFile
18#define _TopOpeBRepBuild_Pave_HeaderFile
19
20#include <Standard.hxx>
42cf5bc1 21
42cf5bc1 22#include <Standard_Real.hxx>
23#include <Standard_Boolean.hxx>
24#include <TopOpeBRepDS_Kind.hxx>
25#include <TopOpeBRepBuild_Loop.hxx>
42cf5bc1 26
27
28class TopOpeBRepBuild_Pave;
29DEFINE_STANDARD_HANDLE(TopOpeBRepBuild_Pave, TopOpeBRepBuild_Loop)
30
31
32class TopOpeBRepBuild_Pave : public TopOpeBRepBuild_Loop
33{
34
35public:
36
37
38 //! V = vertex, P = parameter of vertex <V>
39 //! bound = True if <V> is an old vertex
40 //! bound = False if <V> is a new vertex
41 Standard_EXPORT TopOpeBRepBuild_Pave(const TopoDS_Shape& V, const Standard_Real P, const Standard_Boolean bound);
42
43 Standard_EXPORT void HasSameDomain (const Standard_Boolean b);
44
45 Standard_EXPORT void SameDomain (const TopoDS_Shape& VSD);
46
47 Standard_EXPORT Standard_Boolean HasSameDomain() const;
48
49 Standard_EXPORT const TopoDS_Shape& SameDomain() const;
50
51 Standard_EXPORT const TopoDS_Shape& Vertex() const;
52
53 Standard_EXPORT TopoDS_Shape& ChangeVertex();
54
55 Standard_EXPORT Standard_Real Parameter() const;
56
57 Standard_EXPORT void Parameter (const Standard_Real Par);
58
59 Standard_EXPORT TopOpeBRepDS_Kind& InterferenceType();
60
61 Standard_EXPORT virtual Standard_Boolean IsShape() const Standard_OVERRIDE;
62
63 Standard_EXPORT virtual const TopoDS_Shape& Shape() const Standard_OVERRIDE;
64
65 Standard_EXPORT virtual void Dump() const Standard_OVERRIDE;
66
67
68
69
92efcf78 70 DEFINE_STANDARD_RTTIEXT(TopOpeBRepBuild_Pave,TopOpeBRepBuild_Loop)
42cf5bc1 71
72protected:
73
74
75
76
77private:
78
79
80 TopoDS_Shape myVertex;
81 Standard_Real myParam;
82 Standard_Boolean myIsShape;
83 Standard_Boolean myHasSameDomain;
84 TopoDS_Shape mySameDomain;
85 TopOpeBRepDS_Kind myIntType;
86
87
88};
89
90
91
92
93
94
95
96#endif // _TopOpeBRepBuild_Pave_HeaderFile