blob: e1e4411c4abceaec130746cfe7ef294ee64ac4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// File: BRepMesh_FastDiscret.lxx
// Created: Fri Sep 26 16:39:53 2003
// Author: Open CASCADE Support
// <support@opencascade.com>
// Copyright: Open CASCADE 2003
#include <BRepMesh_DataStructureOfDelaun.hxx>
//=======================================================================
//function : GetDeflection
//purpose :
//=======================================================================
inline Standard_Real BRepMesh_FastDiscret::GetDeflection() const
{
return myDeflection;
}
//=======================================================================
//function : GetAngle
//purpose :
//=======================================================================
inline Standard_Real BRepMesh_FastDiscret::GetAngle() const
{
return myAngle;
}
//=======================================================================
//function : GetMapOfDefEdge
//purpose :
//=======================================================================
inline const TopTools_DataMapOfShapeReal& BRepMesh_FastDiscret::GetMapOfDefEdge() const
{
return myMapdefle;
}
//=======================================================================
//function : EdgesOfDomain
//purpose :
//=======================================================================
inline void BRepMesh_FastDiscret::EdgesOfDomain(BRepMesh_MapOfInteger& Indices) const
{
Indices = myStructure->LinkOfDomain();
}
//=======================================================================
//function : TrianglesOfDomain
//purpose :
//=======================================================================
inline void BRepMesh_FastDiscret::TrianglesOfDomain(BRepMesh_MapOfInteger& Indices) const
{
Indices = myStructure->ElemOfDomain();
}
//=======================================================================
//function : NbPoint3d
//purpose :
//=======================================================================
inline Standard_Integer BRepMesh_FastDiscret::NbPoint3d() const
{
return myNbLocat;
}
//=======================================================================
//function : Point3d
//purpose :
//=======================================================================
inline const gp_Pnt& BRepMesh_FastDiscret::Point3d(const Standard_Integer Index) const
{
return myLocation3d(Index);
}
//=======================================================================
//function : WithShare
//purpose :
//=======================================================================
inline Standard_Boolean BRepMesh_FastDiscret::WithShare() const
{
return myWithShare;
}
//=======================================================================
//function : InShape
//purpose :
//=======================================================================
inline Standard_Boolean BRepMesh_FastDiscret::InShape() const
{
return myInshape;
}
//=======================================================================
//function : ShapeTrigu
//purpose :
//=======================================================================
inline Standard_Boolean BRepMesh_FastDiscret::ShapeTrigu() const
{
return myShapetrigu;
}
|