1 #ifndef GeometryVector_newBasic2DVector_h 2 #define GeometryVector_newBasic2DVector_h 42 template <
class Other>
61 T x()
const {
return v[0]; }
64 T y()
const {
return v[1]; }
87 return my_mag == 0 ? *this : *
this / my_mag;
155 std::ostream&
print2D(std::ostream&
s,
double x,
double y);
161 inline std::ostream& operator<<(std::ostream& s, const Basic2DVector<T>&
v) {
175 template <
class T,
class U>
179 return RT(
a) + RT(
b);
182 template <
class T,
class U>
186 return RT(
a) - RT(
b);
196 template <
class T,
class U>
215 template <
class T,
class Scalar>
217 T t =
static_cast<T>(
s);
222 template <
class T,
class Scalar>
224 T t =
static_cast<T>(
s);
236 template <
class T,
class Scalar>
239 T t =
static_cast<T>(
s);
246 #endif // GeometryVector_Basic2DVector_h
Basic2DVector(const T &x, const T &y)
construct from cartesian coordinates
auto cross2(V1 x, V2 y) -> typename std::remove_reference< decltype(x[0])>::type
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
Basic2DVector(Vec2< U > const &iv)
MathVector const & mathVector() const
Basic2DVector(const Basic2DVector &p)
Copy constructor from same type. Should not be needed but for gcc bug 12685.
Basic2DVector(Vec4< U > const &iv)
Basic2DVector< T > operator+(const Basic2DVector< T > &a, const Basic2DVector< T > &b)
vector sum and subtraction of vectors of possibly different precision
T y() const
Cartesian y coordinate.
Basic2DVector & operator=(const Basic2DVector &)=default
Assignment operator.
Basic2DVector(const Basic2DVector< U > &p)
Basic2DVector(const Other &p)
Basic2DVector< double > Basic2DVectorD
T dot(const Basic3DVector &v) const
Scalar product, or "dot" product, with a vector of same type.
Basic2DVector< T > operator-(const Basic2DVector< T > &a, const Basic2DVector< T > &b)
Basic2DVector< float > Basic2DVectorF
Geom::Phi< T > phi() const
Geom::Polar2Cartesian< T > Polar
T operator*(const Basic2DVector< T > &v1, const Basic2DVector< T > &v2)
T cross(const Basic2DVector &lh) const
Vector product, or "cross" product, with a vector of same type.
Basic2DVector & operator*=(T t)
Scaling by a scalar value (multiplication)
PreciseFloatType< T, U >::Type cross(const Basic2DVector< U > &lh) const
Basic2DVector & operator/=(T t)
Scaling by a scalar value (division)
std::ostream & print2D(std::ostream &s, double x, double y)
Basic2DVector(MathVector const &iv)
Basic2DVector unit() const
Basic2DVector & operator+=(const Basic2DVector< U > &p)
Basic2DVector< T > operator/(const Basic2DVector< T > &v, T t)
MathVector & mathVector()
Basic2DVector operator-() const
Unary minus, returns a vector with components (-x(),-y(),-z())
T r() const
Radius, same as mag()
Basic2DVector & operator-=(const Basic2DVector< U > &p)
T dot(const Basic2DVector &lh) const
Scalar product, or "dot" product, with a vector of same type.
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
T x() const
Cartesian x coordinate.
PreciseFloatType< T, U >::Type dot(const Basic2DVector< U > &lh) const
T operator[](int i) const