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 e229201 commit 9027861Copy full SHA for 9027861
src/main.cpp
@@ -61,6 +61,8 @@ int main() {
61
auto rec = rerun::RecordingStream("rerun_example_cpp");
62
rec.connect().throw_on_failure();
63
64
+ rec.log_timeless("world", rerun::ViewCoordinates::RIGHT_HAND_Z_UP); // Set an up-axis
65
+
66
const int num_points = 1000;
67
68
// Points represented by std::vector<Eigen::Vector3f>
@@ -81,9 +83,9 @@ int main() {
81
83
Eigen::Matrix3f camera_orientation;
82
84
// clang-format off
85
camera_orientation <<
- 0.0, 1.0, 0.0,
- 0.0, 0.0, 1.0,
86
- 1.0, 0.0, 0.0;
+ +1.0, +0.0, +0.0,
87
+ +0.0, +0.0, +1.0,
88
+ +0.0, -1.0, +0.0;
89
// clang-format on
90
rec.log(
91
"world/camera",
0 commit comments