We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db685e commit 4aec7ffCopy full SHA for 4aec7ff
example/src/greeting.cpp
@@ -4,7 +4,8 @@ namespace example {
4
5
/// Print a greeting
6
void Greeting::sayHello() const {
7
- std::cout << "Hello from GTSAM" << std::endl;
+ std::cout << "Hello from GTSAM!" << std::endl;
8
+ std::cout << "Here's a Rot3 for you " << gtsam::Rot3() << std::endl;
9
}
10
11
/// Print a farewell
example/src/greeting.h
@@ -1,3 +1,4 @@
1
+#include <gtsam/geometry/Rot3.h>
2
#include <iostream>
3
#include <string>
0 commit comments