Skip to content
Snippets Groups Projects
Commit 16908981 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

[skip ci] Fix doc joint -> join

parent 52036e4e
No related branches found
No related tags found
1 merge request!466devel->main
Pipeline #11400 skipped
...@@ -202,19 +202,19 @@ void ProcessorMotion::processCapture(CaptureBasePtr _incoming_ptr) ...@@ -202,19 +202,19 @@ void ProcessorMotion::processCapture(CaptureBasePtr _incoming_ptr)
} }
case FIRST_TIME_WITH_KF_BEFORE_INCOMING : case FIRST_TIME_WITH_KF_BEFORE_INCOMING :
{ {
// cannot joint to the KF: create own origin // cannot join to the KF: create own origin
setOrigin(getProblem()->getState(getStateStructure()), _incoming_ptr->getTimeStamp()); setOrigin(getProblem()->getState(getStateStructure()), _incoming_ptr->getTimeStamp());
break; break;
} }
case FIRST_TIME_WITH_KF_ON_INCOMING : case FIRST_TIME_WITH_KF_ON_INCOMING :
{ {
// can joint to the KF // can join to the KF
setOrigin(keyframe_from_callback); setOrigin(keyframe_from_callback);
break; break;
} }
case FIRST_TIME_WITH_KF_AFTER_INCOMING : case FIRST_TIME_WITH_KF_AFTER_INCOMING :
{ {
// cannot joint to the KF: create own origin // cannot join to the KF: create own origin
setOrigin(getProblem()->getState(getStateStructure()), _incoming_ptr->getTimeStamp()); setOrigin(getProblem()->getState(getStateStructure()), _incoming_ptr->getTimeStamp());
break; break;
} }
......
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