parallelogram_3d.inl
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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #ifndef LASS_GUARDIAN_OF_INCLUSION_PRIM_SIMPLE_PARALLELOGRAM_3D_INL
00046 #define LASS_GUARDIAN_OF_INCLUSION_PRIM_SIMPLE_PARALLELOGRAM_3D_INL
00047
00048 #include "prim_common.h"
00049 #include "parallelogram_3d.h"
00050 #include "impl/plane_3d_impl_detail.h"
00051
00052 namespace lass
00053 {
00054 namespace prim
00055 {
00056
00057
00058
00059
00060 template <typename T>
00061 Parallelogram3D<T>::Parallelogram3D()
00062 {
00063 }
00064
00065
00066
00067
00068
00069 template <typename T>
00070 Parallelogram3D<T>::Parallelogram3D(const TPoint& iSupport, const TVector& iSizeU,
00071 const TVector& iSizeV):
00072 support_(iSupport),
00073 sizeU_(iSizeU),
00074 sizeV_(iSizeV)
00075 {
00076 }
00077
00078
00079
00080 template <typename T> inline
00081 const typename Parallelogram3D<T>::TPoint&
00082 Parallelogram3D<T>::support() const
00083 {
00084 return support_;
00085 }
00086
00087
00088
00089 template <typename T> inline
00090 typename Parallelogram3D<T>::TPoint&
00091 Parallelogram3D<T>::support()
00092 {
00093 return support_;
00094 }
00095
00096
00097
00098 template <typename T> inline
00099 const typename Parallelogram3D<T>::TVector&
00100 Parallelogram3D<T>::sizeU() const
00101 {
00102 return sizeU_;
00103 }
00104
00105
00106
00107 template <typename T> inline
00108 typename Parallelogram3D<T>::TVector&
00109 Parallelogram3D<T>::sizeU()
00110 {
00111 return sizeU_;
00112 }
00113
00114
00115
00116 template <typename T> inline
00117 const typename Parallelogram3D<T>::TVector&
00118 Parallelogram3D<T>::sizeV() const
00119 {
00120 return sizeV_;
00121 }
00122
00123
00124
00125 template <typename T> inline
00126 typename Parallelogram3D<T>::TVector&
00127 Parallelogram3D<T>::sizeV()
00128 {
00129 return sizeV_;
00130 }
00131
00132
00133
00134 template <typename T>
00135 const typename Parallelogram3D<T>::TPlane
00136 Parallelogram3D<T>::plane() const
00137 {
00138 return TPlane(cross(sizeU_, sizeV_), support_);
00139 }
00140
00141
00142
00143
00144
00145
00146 template <typename T>
00147 const typename Parallelogram3D<T>::TValue
00148 Parallelogram3D<T>::squaredArea() const
00149 {
00150 return cross(sizeU_, sizeV_).squaredNorm();
00151 }
00152
00153
00154
00155
00156
00157 template <typename T>
00158 const typename Parallelogram3D<T>::TValue
00159 Parallelogram3D<T>::area() const
00160 {
00161 return num::sqrt(squaredArea());
00162 }
00163
00164
00165
00166
00167
00168 template <typename T>
00169 const typename Parallelogram3D<T>::TValue
00170 Parallelogram3D<T>::perimeter() const
00171 {
00172 return 2 * (sizeU_.norm() + sizeV_.norm());
00173 }
00174
00175
00176
00177 template <typename T>
00178 const typename Parallelogram3D<T>::TPoint
00179 Parallelogram3D<T>::point(TParam iU, TParam iV) const
00180 {
00181 return support_ + iU * sizeU_ + iV * sizeV_;
00182 }
00183
00184
00185
00186 template <typename T> inline
00187 const typename Parallelogram3D<T>::TPoint
00188 Parallelogram3D<T>::point(const TUV& iUv) const
00189 {
00190 return point(iUv.x, iUv.y);
00191 }
00192
00193
00194
00195 template <typename T>
00196 const typename Parallelogram3D<T>::TUV
00197 Parallelogram3D<T>::uv(const TPoint& iPoint) const
00198 {
00199 TVector reciprocalU;
00200 TVector reciprocalV;
00201 impl::Plane3DImplDetail::generateReciprocal(sizeU_, sizeV_, reciprocalU, reciprocalV);
00202 const TVector relative = iPoint - support_;
00203 return TUV(dot(relative, reciprocalU), dot(relative, reciprocalV));
00204 }
00205
00206
00207
00208
00209
00210
00211
00212 template <typename T>
00213 const bool Parallelogram3D<T>::isSimple() const
00214 {
00215 return true;
00216 }
00217
00218
00219
00220
00221
00222
00223
00224 template <typename T>
00225 const bool Parallelogram3D<T>::isConvex() const
00226 {
00227 return true;
00228 }
00229
00230
00231
00232
00233
00234
00235
00236 template <typename T>
00237 const bool Parallelogram3D<T>::isReflex(int iIndexOfVertex) const
00238 {
00239 return false;
00240 }
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252 template <typename T>
00253 io::XmlOStream& operator<<(io::XmlOStream& ioOStream, const Parallelogram3D<T>& iParallelogram)
00254 {
00255 LASS_ENFORCE_STREAM(ioOStream) << "<Parallelogram3D>\n";
00256 ioOStream << "<support>" << iParallelogram.support() << "</support>\n";
00257 ioOStream << "<sizeU>" << iParallelogram.sizeU() << "</sizeU>\n";
00258 ioOStream << "<sizeV>" << iParallelogram.sizeV() << "</sizeV>\n";
00259 ioOStream << "</Parallelogram3D>\n";
00260 return ioOStream;
00261 }
00262
00263
00264
00265
00266
00267 template <typename T>
00268 std::ostream& operator<<(std::ostream& ioOStream, const Parallelogram3D<T>& iParallelogram)
00269 {
00270 LASS_ENFORCE_STREAM(ioOStream)
00271 << "{S=" << iParallelogram.support() << ", U=" << iParallelogram.sizeU()
00272 << ", V=" << iParallelogram.sizeV() << "}";
00273 return ioOStream;
00274 }
00275
00276
00277
00278 }
00279
00280 }
00281
00282 #endif
00283
00284