Skip to content

Commit

Permalink
Local style include
Browse files Browse the repository at this point in the history
  • Loading branch information
tizianoGuadagnino committed Jul 11, 2024
1 parent 0cbc1d9 commit 3e7abb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cpp/kiss_icp/core/Preprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
#include <Eigen/Core>
#include <algorithm>
#include <cmath>
#include <kiss_icp/core/VoxelUtils.hpp>
#include <sophus/se3.hpp>
#include <vector>

#include "VoxelUtils.hpp"

namespace kiss_icp {
std::vector<Eigen::Vector3d> VoxelDownsample(const std::vector<Eigen::Vector3d> &frame,
double voxel_size) {
Expand Down
3 changes: 2 additions & 1 deletion cpp/kiss_icp/core/VoxelHashMap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
#include <tsl/robin_map.h>

#include <Eigen/Core>
#include <kiss_icp/core/VoxelUtils.hpp>
#include <sophus/se3.hpp>
#include <vector>

#include "VoxelUtils.hpp"

namespace kiss_icp {
struct VoxelHashMap {
struct VoxelBlock {
Expand Down
1 change: 1 addition & 0 deletions cpp/kiss_icp/core/VoxelUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#pragma once

#include <Eigen/Core>
#include <cmath>
#include <memory>

namespace kiss_icp {
Expand Down

0 comments on commit 3e7abb6

Please sign in to comment.