Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
ndcurves
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
loco-3d
ndcurves
Commits
6c3c41a0
Commit
6c3c41a0
authored
5 years ago
by
Pierre Fernbach
Browse files
Options
Downloads
Patches
Plain Diff
add operator == in SO3Linear
parent
502d6cd8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/curves/so3_linear.h
+36
-0
36 additions, 0 deletions
include/curves/so3_linear.h
with
36 additions
and
0 deletions
include/curves/so3_linear.h
+
36
−
0
View file @
6c3c41a0
...
...
@@ -107,6 +107,42 @@ struct SO3Linear : public curve_abc<Time, Numeric, Safe, Eigen::Matrix<Numeric,
/// \return \f$x(t)\f$ point corresponding on spline at time t.
virtual
matrix3_t
operator
()(
const
time_t
t
)
const
{
return
computeAsQuaternion
(
t
).
toRotationMatrix
();
}
/**
* @brief isApprox check if other and *this are equals, given a precision treshold.
* This test is done by discretizing, it should be re-implemented in the child class to check exactly
* all the members.
* @param other the other curve to check
* @param order the order up to which the derivatives of the curves are checked for equality
* @param prec the precision treshold, default Eigen::NumTraits<Numeric>::dummy_precision()
* @return true is the two curves are approximately equals
*/
virtual
bool
isApprox
(
const
SO3Linear_t
&
other
,
const
Numeric
prec
=
Eigen
::
NumTraits
<
Numeric
>::
dummy_precision
(),
const
size_t
order
=
5
)
const
{
//std::cout<<"is approx in SO3 called."<<std::endl;
(
void
)
order
;
// silent warning, order is not used in this class.
return
T_min_
==
other
.
min
()
&&
T_max_
==
other
.
max
()
&&
dim_
==
other
.
dim
()
&&
init_rot_
.
isApprox
(
other
.
init_rot_
,
prec
)
&&
end_rot_
.
isApprox
(
other
.
end_rot_
,
prec
);
}
virtual
bool
operator
==
(
const
SO3Linear_t
&
other
)
const
{
return
isApprox
(
other
);
}
virtual
bool
operator
!=
(
const
SO3Linear_t
&
other
)
const
{
return
!
(
*
this
==
other
);
}
virtual
bool
operator
==
(
const
curve_abc_t
&
other
)
const
{
return
curve_abc_t
::
isApprox
(
other
);
}
virtual
bool
operator
!=
(
const
curve_abc_t
&
other
)
const
{
return
!
curve_abc_t
::
isApprox
(
other
);
}
/// \brief Evaluation of the derivative of order N of spline at time t.
/// \param t : the time when to evaluate the spline.
/// \param order : order of derivative.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment