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 namespace Foam
00029 {
00030
00031
00032
00033
00034 template <class Cmpt>
00035 inline Vector<Cmpt>::Vector()
00036 {}
00037
00038
00039
00040 template <class Cmpt>
00041 inline Vector<Cmpt>::Vector(const VectorSpace<Vector<Cmpt>, Cmpt, 3>& vs)
00042 :
00043 VectorSpace<Vector<Cmpt>, Cmpt, 3>(vs)
00044 {}
00045
00046
00047
00048 template <class Cmpt>
00049 inline Vector<Cmpt>::Vector(const Cmpt& vx, const Cmpt& vy, const Cmpt& vz)
00050 {
00051 this->v_[X] = vx;
00052 this->v_[Y] = vy;
00053 this->v_[Z] = vz;
00054 }
00055
00056
00057
00058 template <class Cmpt>
00059 inline Vector<Cmpt>::Vector(Istream& is)
00060 :
00061 VectorSpace<Vector<Cmpt>, Cmpt, 3>(is)
00062 {}
00063
00064
00065
00066
00067 template <class Cmpt>
00068 inline const Cmpt& Vector<Cmpt>::x() const
00069 {
00070 return this->v_[X];
00071 }
00072
00073 template <class Cmpt>
00074 inline const Cmpt& Vector<Cmpt>::y() const
00075 {
00076 return this->v_[Y];
00077 }
00078
00079 template <class Cmpt>
00080 inline const Cmpt& Vector<Cmpt>::z() const
00081 {
00082 return this->v_[Z];
00083 }
00084
00085
00086 template <class Cmpt>
00087 inline Cmpt& Vector<Cmpt>::x()
00088 {
00089 return this->v_[X];
00090 }
00091
00092 template <class Cmpt>
00093 inline Cmpt& Vector<Cmpt>::y()
00094 {
00095 return this->v_[Y];
00096 }
00097
00098 template <class Cmpt>
00099 inline Cmpt& Vector<Cmpt>::z()
00100 {
00101 return this->v_[Z];
00102 }
00103
00104
00105
00106
00107 template <class Cmpt>
00108 inline const Vector<Cmpt>& Vector<Cmpt>::centre
00109 (
00110 const Foam::List<Vector<Cmpt> >&
00111 )const
00112 {
00113 return *this;
00114 }
00115
00116
00117
00118
00119 template <class Cmpt>
00120 inline typename innerProduct<Vector<Cmpt>, Vector<Cmpt> >::type
00121 operator&(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
00122 {
00123 return Cmpt(v1.x()*v2.x() + v1.y()*v2.y() + v1.z()*v2.z());
00124 }
00125
00126
00127 template <class Cmpt>
00128 inline Vector<Cmpt> operator^(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
00129 {
00130 return Vector<Cmpt>
00131 (
00132 (v1.y()*v2.z() - v1.z()*v2.y()),
00133 (v1.z()*v2.x() - v1.x()*v2.z()),
00134 (v1.x()*v2.y() - v1.y()*v2.x())
00135 );
00136 }
00137
00138
00139
00140
00141 }
00142
00143