Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef octreeDataEdges_H
00036 #define octreeDataEdges_H
00037
00038 #include <OpenFOAM/line.H>
00039 #include <OpenFOAM/linePointRef.H>
00040 #include "treeBoundBoxList.H"
00041 #include <OpenFOAM/labelList.H>
00042 #include <OpenFOAM/className.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050 template<class Type> class octree;
00051
00052
00053
00054
00055
00056 class octreeDataEdges
00057 {
00058
00059
00060
00061 static scalar tol;
00062
00063
00064
00065
00066
00067 const edgeList& edges_;
00068
00069
00070 const pointField& points_;
00071
00072
00073 labelList edgeLabels_;
00074
00075
00076 treeBoundBoxList allBb_;
00077
00078
00079 public:
00080
00081
00082 ClassName("octreeDataEdges");
00083
00084
00085
00086
00087 octreeDataEdges
00088 (
00089 const edgeList& edges,
00090 const pointField& points,
00091 const labelList& edgeLabels
00092 );
00093
00094
00095 octreeDataEdges(const octreeDataEdges&);
00096
00097
00098
00099
00100 ~octreeDataEdges();
00101
00102
00103
00104
00105
00106
00107 const edgeList& edges() const
00108 {
00109 return edges_;
00110 }
00111
00112 const pointField& points() const
00113 {
00114 return points_;
00115 }
00116
00117 const labelList& edgeLabels() const
00118 {
00119 return edgeLabels_;
00120 }
00121
00122 const treeBoundBoxList& allBb() const
00123 {
00124 return allBb_;
00125 }
00126
00127 label size() const
00128 {
00129 return allBb_.size();
00130 }
00131
00132
00133
00134
00135
00136 label getSampleType
00137 (
00138 const octree<octreeDataEdges>&,
00139 const point&
00140 ) const;
00141
00142
00143 bool overlaps
00144 (
00145 const label index,
00146 const treeBoundBox& sampleBb
00147 ) const;
00148
00149
00150 bool contains
00151 (
00152 const label index,
00153 const point& sample
00154 ) const;
00155
00156
00157
00158 bool intersects
00159 (
00160 const label index,
00161 const point& start,
00162 const point& end,
00163 point& intersectionPoint
00164 ) const;
00165
00166
00167
00168
00169 bool findTightest
00170 (
00171 const label index,
00172 const point& sample,
00173 treeBoundBox& tightest
00174 ) const;
00175
00176
00177
00178
00179 scalar calcSign
00180 (
00181 const label index,
00182 const point& sample,
00183 vector& n
00184 ) const;
00185
00186
00187
00188 scalar calcNearest
00189 (
00190 const label index,
00191 const point& sample,
00192 point& nearest
00193 ) const;
00194
00195
00196
00197 scalar calcNearest
00198 (
00199 const label index,
00200 const linePointRef& ln,
00201 point& linePt,
00202 point& shapePt
00203 ) const;
00204
00205
00206
00207
00208
00209 void write(Ostream& os, const label index) const;
00210 };
00211
00212
00213
00214
00215 }
00216
00217
00218
00219
00220 #endif
00221
00222