MATH: Fix build on certain compilers.
This commit is contained in:
parent
c62424bfcb
commit
e982124e05
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ Vector2d::Matrix(const MatrixBase<2, 1> &vec) :
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2d::Matrix(float *data) :
|
Vector2d::Matrix(float *data) :
|
||||||
MatrixType(data) {
|
MatrixType<2, 1>(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Vector2d::rotateAround(const Vector2d &point, const Angle &angle) {
|
void Vector2d::rotateAround(const Vector2d &point, const Angle &angle) {
|
||||||
|
|
|
@ -45,7 +45,7 @@ Vector3d::Matrix(const MatrixBase<3, 1> &vec) :
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3d::Matrix(float *data) :
|
Vector3d::Matrix(float *data) :
|
||||||
MatrixType(data) {
|
MatrixType<3, 1>(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Vector3d::set(float lx, float ly, float lz) {
|
void Vector3d::set(float lx, float ly, float lz) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue