1 #ifndef GeometryVector_newBasic2DVector_h
2 #define GeometryVector_newBasic2DVector_h
39 template <
class Other>
58 T x()
const {
return v[0]; }
61 T y()
const {
return v[1]; }
84 return my_mag == 0 ? *
this : *
this / my_mag;
151 namespace geometryDetails {
152 std::ostream&
print2D(std::ostream&
s,
double x,
double y);
158 inline std::ostream& operator<<(std::ostream& s, const Basic2DVector<T>&
v) {
172 template <
class T,
class U>
176 return RT(a) + RT(b);
179 template <
class T,
class U>
183 return RT(a) - RT(b);
193 template <
class T,
class U>
212 template <
class T,
class Scalar>
214 T t =
static_cast<T>(
s);
219 template <
class T,
class Scalar>
221 T t =
static_cast<T>(
s);
233 template <
class T,
class Scalar>
236 T t =
static_cast<T>(
s);
243 #endif // GeometryVector_Basic2DVector_h
T cross(const Basic2DVector &lh) const
Vector product, or "cross" product, with a vector of same type.
Basic2DVector(const T &x, const T &y)
construct from cartesian coordinates
Basic2DVector(mathSSE::Vec2< U > const &iv)
MatrixMeschach operator+(const MatrixMeschach &mat1, const MatrixMeschach &mat2)
Basic2DVector(const Basic2DVector &p)
Copy constructor from same type. Should not be needed but for gcc bug 12685.
PreciseFloatType< T, U >::Type dot(const Basic2DVector< U > &lh) const
T dot(const Basic2DVector &lh) const
Scalar product, or "dot" product, with a vector of same type.
MatrixMeschach operator-(const MatrixMeschach &mat1, const MatrixMeschach &mat2)
MathVector const & mathVector() const
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
Basic2DVector operator-() const
Unary minus, returns a vector with components (-x(),-y(),-z())
T r() const
Radius, same as mag()
Basic2DVector(const Basic2DVector< U > &p)
Basic2DVector(const Other &p)
Basic2DVector< double > Basic2DVectorD
Basic2DVector unit() const
Basic2DVector< float > Basic2DVectorF
Geom::Polar2Cartesian< T > Polar
Basic2DVector & operator*=(T t)
Scaling by a scalar value (multiplication)
Basic2DVector & operator/=(T t)
Scaling by a scalar value (division)
std::ostream & print2D(std::ostream &s, double x, double y)
Basic2DVector & operator+=(const Basic2DVector< U > &p)
T y() const
Cartesian y coordinate.
MathVector & mathVector()
T1 operator/(const Phi< T1, Range > &a, const Phi< T1, Range > &b)
Division.
Basic2DVector< T > xy() const
Basic2DVector & operator-=(const Basic2DVector< U > &p)
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
T operator[](int i) const
Basic2DVector(mathSSE::Vec4< U > const &iv)
T dot(const Basic3DVector &v) const
Scalar product, or "dot" product, with a vector of same type.
MatrixMeschach operator*(const MatrixMeschach &mat1, const MatrixMeschach &mat2)
mathSSE::Vec2< T > MathVector
Geom::Phi< T > phi() const
mathSSE::Vec2< T > VectorType
T x() const
Cartesian x coordinate.
Basic3DVector cross(const Basic3DVector &v) const
Vector product, or "cross" product, with a vector of same type.
PreciseFloatType< T, U >::Type cross(const Basic2DVector< U > &lh) const