Skip to content

Commit 4aec7ff

Browse files
committed
add GTSAM Rot3 code for completion purposes
1 parent 0db685e commit 4aec7ff

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

example/src/greeting.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ namespace example {
44

55
/// Print a greeting
66
void Greeting::sayHello() const {
7-
std::cout << "Hello from GTSAM" << std::endl;
7+
std::cout << "Hello from GTSAM!" << std::endl;
8+
std::cout << "Here's a Rot3 for you " << gtsam::Rot3() << std::endl;
89
}
910

1011
/// Print a farewell

example/src/greeting.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <gtsam/geometry/Rot3.h>
12
#include <iostream>
23
#include <string>
34

0 commit comments

Comments
 (0)