Skip to content
Snippets Groups Projects
Commit a13f35f8 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MaL] Remove old scalarTriple implementation.

parent 663fc70e
No related branches found
No related tags found
No related merge requests found
...@@ -12,18 +12,6 @@ ...@@ -12,18 +12,6 @@
namespace MathLib namespace MathLib
{ {
double scalarTriple(MathLib::Vector3 const& u, MathLib::Vector3 const& v,
MathLib::Vector3 const& w)
{
auto const pu =
Eigen::Map<Eigen::Vector3d>(const_cast<double*>(u.getCoords()));
auto const pv =
Eigen::Map<Eigen::Vector3d>(const_cast<double*>(v.getCoords()));
auto const pw =
Eigen::Map<Eigen::Vector3d>(const_cast<double*>(w.getCoords()));
return pu.cross(pv).dot(pw);
}
double scalarTriple(Eigen::Vector3d const& u, Eigen::Vector3d const& v, double scalarTriple(Eigen::Vector3d const& u, Eigen::Vector3d const& v,
Eigen::Vector3d const& w) Eigen::Vector3d const& w)
{ {
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include <Eigen/Eigen> #include <Eigen/Eigen>
#include <cmath> #include <cmath>
#include "TemplatePoint.h"
#include "MathTools.h" #include "MathTools.h"
#include "TemplatePoint.h"
namespace MathLib namespace MathLib
{ {
...@@ -198,10 +198,6 @@ template <typename T1> TemplateVector3<T1> operator*( ...@@ -198,10 +198,6 @@ template <typename T1> TemplateVector3<T1> operator*(
using Vector3 = TemplateVector3<double>; using Vector3 = TemplateVector3<double>;
/// Calculates the scalar triple (u x v) . w /// Calculates the scalar triple (u x v) . w
double scalarTriple(MathLib::Vector3 const& u, MathLib::Vector3 const& v,
MathLib::Vector3 const& w);
/// Calculates the scalar triple (u x v) . w using Eigen functionality
double scalarTriple(Eigen::Vector3d const& u, Eigen::Vector3d const& v, double scalarTriple(Eigen::Vector3d const& u, Eigen::Vector3d const& v,
Eigen::Vector3d const& w); Eigen::Vector3d const& w);
} // namespace MathLib } // namespace MathLib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment