Skip to content

Commit

Permalink
Merge pull request #5 from rerun-io/emilk/update-rerun
Browse files Browse the repository at this point in the history
Update to Rerun 0.10.0-alpha.8
  • Loading branch information
emilk authored Oct 26, 2023
2 parents 5085560 + 006237d commit 44d929a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if(NOT DEFINED CMAKE_CXX_STANDARD)
endif()

include(FetchContent)
FetchContent_Declare(rerun_sdk URL https://build.rerun.io/commit/06dd483/rerun_cpp_sdk.zip) # 2023-10-20
FetchContent_Declare(rerun_sdk URL https://build.rerun.io/commit/bc05d11/rerun_cpp_sdk.zip) # 2023-10-26
FetchContent_MakeAvailable(rerun_sdk)

find_package(Eigen3 REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ int main() {
// Posed pinhole camera:
rec.log(
"world/camera",
rerun::Pinhole::focal_length_and_resolution({500.0, 500.0}, {640.0, 480.0})
rerun::Pinhole::from_focal_length_and_resolution({500.0, 500.0}, {640.0, 480.0})
);

const Eigen::Vector3f camera_position{0.0, -1.0, 0.0};
Expand Down

0 comments on commit 44d929a

Please sign in to comment.