Skip to content

Commit

Permalink
Merge branch 'feat/sgal3' of github.com:artivis/manif into feat/sgal3
Browse files Browse the repository at this point in the history
  • Loading branch information
joansola committed Mar 18, 2024
2 parents d8f89e1 + 00bc721 commit f768723
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions include/manif/impl/sgal3/SGal3Tangent_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,25 +373,25 @@ SGal3TangentBase<_Derived>::lin() const {
}

template <typename _Derived>
typename SGal3TangentBase<_Derived>::AngBlock
typename SGal3TangentBase<_Derived>::LinBlock
SGal3TangentBase<_Derived>::lin2() {
return coeffs().template segment<3>(3);
}

template <typename _Derived>
const typename SGal3TangentBase<_Derived>::ConstAngBlock
const typename SGal3TangentBase<_Derived>::ConstLinBlock
SGal3TangentBase<_Derived>::lin2() const {
return coeffs().template segment<3>(3);
}

template <typename _Derived>
typename SGal3TangentBase<_Derived>::LinBlock
typename SGal3TangentBase<_Derived>::AngBlock
SGal3TangentBase<_Derived>::ang() {
return coeffs().template segment<3>(6);
}

template <typename _Derived>
const typename SGal3TangentBase<_Derived>::ConstLinBlock
const typename SGal3TangentBase<_Derived>::ConstAngBlock
SGal3TangentBase<_Derived>::ang() const {
return coeffs().template segment<3>(6);
}
Expand Down
1 change: 1 addition & 0 deletions include/manif/manif.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "manif/SE3.h"
#include "manif/Rn.h"
#include "manif/SE_2_3.h"
#include "manif/SGal3.h"

#include "manif/Bundle.h"

Expand Down
3 changes: 2 additions & 1 deletion test/autodiff/gtest_common_tester_autodiff.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ namespace manif{
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SO3) \
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SE2) \
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SE3) \
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SE_2_3)
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SE_2_3) \
__MANIF_MAKE_TEST_AUTODIFF_ALL_TYPES(SGal3)

namespace manif {

Expand Down

0 comments on commit f768723

Please sign in to comment.