initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / primitives / Vector2D / Vector2DI.H
blob8df6c2f625b271d56601a4523228f669c639a3ea
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 namespace Foam
32 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
34 // Construct null
35 template <class Cmpt>
36 inline Vector2D<Cmpt>::Vector2D()
40 // Construct given VectorSpace
41 template <class Cmpt>
42 inline Vector2D<Cmpt>::Vector2D(const VectorSpace<Vector2D<Cmpt>, Cmpt, 2>& vs)
44     VectorSpace<Vector2D<Cmpt>, Cmpt, 2>(vs)
48 // Construct given three Cmpts
49 template <class Cmpt>
50 inline Vector2D<Cmpt>::Vector2D(const Cmpt& vx, const Cmpt& vy)
52     this->v_[X] = vx;
53     this->v_[Y] = vy;
57 // Construct from Istream
58 template <class Cmpt>
59 inline Vector2D<Cmpt>::Vector2D(Istream& is)
61     VectorSpace<Vector2D<Cmpt>, Cmpt, 2>(is)
65 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
67 template <class Cmpt>
68 inline const Cmpt&  Vector2D<Cmpt>::x() const
70     return this->v_[X];
73 template <class Cmpt>
74 inline const Cmpt&  Vector2D<Cmpt>::y() const
76     return this->v_[Y];
80 template <class Cmpt>
81 inline Cmpt& Vector2D<Cmpt>::x()
83     return this->v_[X];
86 template <class Cmpt>
87 inline Cmpt& Vector2D<Cmpt>::y()
89     return this->v_[Y];
93 // * * * * * * * * * * * * * * * Global Operators  * * * * * * * * * * * * * //
95 template <class Cmpt>
96 inline typename innerProduct<Vector2D<Cmpt>, Vector2D<Cmpt> >::type
97 operator&(const Vector2D<Cmpt>& v1, const Vector2D<Cmpt>& v2)
99     return Cmpt(v1.x()*v2.x() + v1.y()*v2.y());
103 template <class Cmpt>
104 inline scalar Vector2D<Cmpt>::perp(const Vector2D<Cmpt>& b) const
106     return x()*b.y()-y()*b.x();
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 } // End namespace Foam
114 // ************************************************************************* //