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 octreeDataTriSurface_H
00036 #define octreeDataTriSurface_H
00037
00038 #include <meshTools/treeBoundBoxList.H>
00039 #include <OpenFOAM/labelList.H>
00040 #include <OpenFOAM/point.H>
00041 #include <triSurface/triSurface.H>
00042 #include <OpenFOAM/linePointRef.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050 template<class Type> class octree;
00051
00052
00053
00054
00055
00056 class octreeDataTriSurface
00057 {
00058
00059
00060
00061 static scalar tol;
00062
00063
00064
00065 const triSurface& surface_;
00066
00067 const treeBoundBoxList allBb_;
00068
00069
00070
00071 pointField base_;
00072 pointField E0_;
00073 pointField E1_;
00074 scalarList a_;
00075 scalarList b_;
00076 scalarList c_;
00077
00078
00079
00080
00081
00082
00083 static void nearestCoords
00084 (
00085 const point& base,
00086 const point& E0,
00087 const point& E1,
00088 const scalar a,
00089 const scalar b,
00090 const scalar c,
00091 const point& P,
00092 scalar& s,
00093 scalar& t
00094 );
00095
00096
00097 static treeBoundBoxList calcBb(const triSurface&);
00098
00099
00100
00101
00102 point nearestPoint(const label index, const point& P) const;
00103
00104 public:
00105
00106
00107 ClassName("octreeDataTriSurface");
00108
00109
00110
00111
00112
00113
00114 octreeDataTriSurface(const triSurface&);
00115
00116
00117
00118 octreeDataTriSurface(const triSurface&, const treeBoundBoxList&);
00119
00120
00121
00122
00123
00124
00125 const triSurface& surface() const
00126 {
00127 return surface_;
00128 }
00129
00130 const treeBoundBoxList& allBb() const
00131 {
00132 return allBb_;
00133 }
00134
00135 label size() const
00136 {
00137 return allBb_.size();
00138 }
00139
00140
00141
00142
00143 label getSampleType
00144 (
00145 const octree<octreeDataTriSurface>&,
00146 const point&
00147 ) const;
00148
00149
00150 bool overlaps
00151 (
00152 const label index,
00153 const treeBoundBox& sampleBb
00154 ) const;
00155
00156
00157 bool contains
00158 (
00159 const label index,
00160 const point& sample
00161 ) const;
00162
00163
00164
00165 bool intersects
00166 (
00167 const label index,
00168 const point& start,
00169 const point& end,
00170 point& intersectionPoint
00171 ) const;
00172
00173
00174
00175
00176 bool findTightest
00177 (
00178 const label index,
00179 const point& sample,
00180 treeBoundBox& tightest
00181 ) const;
00182
00183
00184
00185
00186 scalar calcSign
00187 (
00188 const label index,
00189 const point& sample,
00190 vector& n
00191 ) const;
00192
00193
00194
00195 scalar calcNearest
00196 (
00197 const label index,
00198 const point& sample,
00199 point& nearest
00200 ) const;
00201
00202
00203
00204 scalar calcNearest
00205 (
00206 const label index,
00207 const linePointRef& ln,
00208 point& linePt,
00209 point& shapePt
00210 ) const;
00211
00212
00213
00214
00215
00216 void write(Ostream& os, const label index) const;
00217
00218
00219
00220
00221 friend Istream& operator>>(Istream&, octreeDataTriSurface&);
00222 friend Ostream& operator<<(Ostream&, const octreeDataTriSurface&);
00223 };
00224
00225
00226
00227
00228 }
00229
00230
00231
00232
00233 #endif
00234
00235