Skip to content

Commit

Permalink
Code indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Oct 15, 2023
1 parent c197d42 commit dfb5691
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ int main(int argc, char **argv)
display->init(I, 100, 100, "Model-based tracker");

if (opt_plot) {
plot = new vpPlot(2, 700, 700, display->getWindowXPosition() + I.getWidth() / display->getDownScalingFactor() + 30, display->getWindowYPosition(), "Estimated pose");
plot = new vpPlot(2, 700, 700, display->getWindowXPosition() + I.getWidth() / display->getDownScalingFactor() + 30,
display->getWindowYPosition(), "Estimated pose");
plot->initGraph(0, 3); // Translation
plot->setTitle(0, "Translation [m]");
plot->setColor(0, 0, vpColor::red);
Expand Down

0 comments on commit dfb5691

Please sign in to comment.