Skip to content

Commit b0fc65c

Browse files
committed
constexpr for Vector<2> constructors
1 parent d46c09d commit b0fc65c

File tree

2 files changed

+13
-28
lines changed

2 files changed

+13
-28
lines changed

src/modm/math/geometry/vector2.hpp

+7-14
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,11 @@ namespace modm
6262
typedef typename GeometricTraits<T>::FloatType FloatType;
6363

6464
public:
65-
/**
66-
* \brief Default-Constructor
67-
*
68-
* Creates a Vector with coordinates (0, 0).
69-
*/
70-
Vector();
71-
72-
Vector(const T& inX, const T& inY);
73-
74-
Vector(const Vector<T, 1> &inX, const Vector<T, 1> &inY);
75-
Vector(const T &inX, const Vector<T, 1> &inY);
76-
Vector(const Vector<T, 1> &inX, const T &inY);
65+
constexpr Vector() = default;
66+
constexpr Vector(const T& inX, const T& inY);
67+
constexpr Vector(const Vector<T, 1> &inX, const Vector<T, 1> &inY);
68+
constexpr Vector(const T &inX, const Vector<T, 1> &inY);
69+
constexpr Vector(const Vector<T, 1> &inX, const T &inY);
7770
explicit Vector(T inVal);
7871
Vector(const Matrix<T, 2, 1> &rhs);
7972

@@ -246,8 +239,8 @@ namespace modm
246239
const T* ptr() const;
247240

248241
Vector operator - () const;
249-
Vector operator - (const Vector &rhs) const;
250-
Vector operator + (const Vector &rhs) const;
242+
constexpr Vector operator - (const Vector &rhs) const;
243+
constexpr Vector operator + (const Vector &rhs) const;
251244
T operator * (const Vector &rhs) const;
252245
T operator ^ (const Vector &rhs) const;
253246
Vector operator * (float rhs) const;

src/modm/math/geometry/vector2_impl.hpp

+6-14
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,15 @@
1818

1919
// ----------------------------------------------------------------------------
2020
template<typename T>
21-
modm::Vector<T, 2>::Vector() :
22-
x(),
23-
y()
24-
{
25-
}
26-
27-
// ----------------------------------------------------------------------------
28-
template<typename T>
29-
modm::Vector<T, 2>::Vector(const T& inX, const T& inY) :
21+
constexpr modm::Vector<T, 2>::Vector(const T& inX, const T& inY) :
3022
x(inX),
3123
y(inY)
3224
{
3325
}
3426

3527
// ----------------------------------------------------------------------------
3628
template<typename T>
37-
modm::Vector<T, 2>::Vector(
29+
constexpr modm::Vector<T, 2>::Vector(
3830
const modm::Vector<T, 1> &inX,
3931
const modm::Vector<T, 1> &inY) :
4032
x(inX.x),
@@ -44,15 +36,15 @@ modm::Vector<T, 2>::Vector(
4436

4537
// ----------------------------------------------------------------------------
4638
template<typename T>
47-
modm::Vector<T, 2>::Vector(const T &inX, const modm::Vector<T, 1> &inY) :
39+
constexpr modm::Vector<T, 2>::Vector(const T &inX, const modm::Vector<T, 1> &inY) :
4840
x(inX),
4941
y(inY.x)
5042
{
5143
}
5244

5345
// ----------------------------------------------------------------------------
5446
template<typename T>
55-
modm::Vector<T, 2>::Vector(const modm::Vector<T, 1> &inX, const T &inY) :
47+
constexpr modm::Vector<T, 2>::Vector(const modm::Vector<T, 1> &inX, const T &inY) :
5648
x(inX.x),
5749
y(inY)
5850
{
@@ -406,15 +398,15 @@ modm::Vector<T, 2>::operator - () const
406398

407399
// ----------------------------------------------------------------------------
408400
template<typename T>
409-
modm::Vector<T, 2>
401+
constexpr modm::Vector<T, 2>
410402
modm::Vector<T, 2>::operator - (const modm::Vector<T, 2> &rhs) const
411403
{
412404
return modm::Vector<T, 2>(x - rhs.x, y - rhs.y);
413405
}
414406

415407
// ----------------------------------------------------------------------------
416408
template<typename T>
417-
modm::Vector<T, 2>
409+
constexpr modm::Vector<T, 2>
418410
modm::Vector<T, 2>::operator + (const modm::Vector<T, 2> &rhs) const
419411
{
420412
return modm::Vector<T, 2>(x + rhs.x, y + rhs.y);

0 commit comments

Comments
 (0)