IAP GITLAB

Skip to content
Snippets Groups Projects
Commit b96cb401 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan: Committed by ralfulrich
Browse files

new constructor for CoordinateSystem from given transfomation matrix

parent f8a8b21a
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,6 @@ namespace corsika::geometry { ...@@ -31,10 +31,6 @@ namespace corsika::geometry {
CoordinateSystem const* reference = nullptr; CoordinateSystem const* reference = nullptr;
EigenTransform transf; EigenTransform transf;
CoordinateSystem(CoordinateSystem const& reference, EigenTransform const& transf)
: reference(&reference)
, transf(transf) {}
CoordinateSystem() CoordinateSystem()
: // for creating the root CS : // for creating the root CS
transf(EigenTransform::Identity()) {} transf(EigenTransform::Identity()) {}
...@@ -48,6 +44,10 @@ namespace corsika::geometry { ...@@ -48,6 +44,10 @@ namespace corsika::geometry {
static EigenTransform GetTransformation(CoordinateSystem const& c1, static EigenTransform GetTransformation(CoordinateSystem const& c1,
CoordinateSystem const& c2); CoordinateSystem const& c2);
CoordinateSystem(CoordinateSystem const& reference, EigenTransform const& transf)
: reference(&reference)
, transf(transf) {}
auto& operator=(const CoordinateSystem& pCS) { auto& operator=(const CoordinateSystem& pCS) {
reference = pCS.reference; reference = pCS.reference;
transf = pCS.transf; transf = pCS.transf;
...@@ -60,6 +60,9 @@ namespace corsika::geometry { ...@@ -60,6 +60,9 @@ namespace corsika::geometry {
return CoordinateSystem(*this, translation); return CoordinateSystem(*this, translation);
} }
/**
* creates a new CS in which vVec points in direction of the new z-axis
*/
template <typename TDim> template <typename TDim>
auto RotateToZ(Vector<TDim> vVec) const { auto RotateToZ(Vector<TDim> vVec) const {
auto const a = vVec.normalized().GetComponents(*this).eVector; auto const a = vVec.normalized().GetComponents(*this).eVector;
......
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