Skip to content
Snippets Groups Projects
Commit 061d5426 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

adapt to new template parameters of the target spaces

[[Imported from SVN: r8208]]
parent 8195050f
No related branches found
No related tags found
No related merge requests found
......@@ -37,19 +37,19 @@ const int dim = 3;
// Image space of the geodesic fe functions
#ifdef ROTATION2
typedef Rotation<2,double> TargetSpace;
typedef Rotation<double,2> TargetSpace;
#endif
#ifdef ROTATION3
typedef Rotation<3,double> TargetSpace;
typedef Rotation<double,2> TargetSpace;
#endif
#ifdef UNITVECTOR2
typedef UnitVector<2> TargetSpace;
typedef UnitVector<double,2> TargetSpace;
#endif
#ifdef UNITVECTOR3
typedef UnitVector<3> TargetSpace;
typedef UnitVector<double,3> TargetSpace;
#endif
#ifdef REALTUPLE1
typedef RealTuple<1> TargetSpace;
typedef RealTuple<double,1> TargetSpace;
#endif
// Tangent vector of the image space
......
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