| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2016 Alec Jacobson <[email protected]>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #ifndef IGL_VOXEL_GRID_H
- #define IGL_VOXEL_GRID_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <Eigen/Geometry>
- namespace igl
- {
- /// Construct the cell center positions of a regular voxel grid (lattice) made
- /// of perfectly square voxels.
- ///
- /// @param[in] box bounding box to enclose by grid
- /// @param[in] s number of cell centers on largest side (including 2*pad_count)
- /// @param[in] pad_count number of cells beyond box
- /// @param[out] GV side(0)*side(1)*side(2) by 3 list of cell center positions
- /// @param[out] side 1 by 3 list of dimension of voxel grid
- template <
- typename Scalar,
- typename DerivedGV,
- typename Derivedside>
- IGL_INLINE void voxel_grid(
- const Eigen::AlignedBox<Scalar,3> & box,
- const int s,
- const int pad_count,
- Eigen::PlainObjectBase<DerivedGV> & GV,
- Eigen::PlainObjectBase<Derivedside> & side);
- /// \overload
- /// Constructs the voxel grid to fit around a given set of points.
- ///
- /// @param[in] V points that must lie within the grid
- /// @param[in] offset distance to pad each side of V's bounding box when determining the extents of the voxel grid.
- template <
- typename DerivedV,
- typename DerivedGV,
- typename Derivedside>
- IGL_INLINE void voxel_grid(
- const Eigen::MatrixBase<DerivedV> & V,
- const typename DerivedV::Scalar offset,
- const int s,
- const int pad_count,
- Eigen::PlainObjectBase<DerivedGV> & GV,
- Eigen::PlainObjectBase<Derivedside> & side);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "voxel_grid.cpp"
- #endif
- #endif
|