mirror of https://github.com/wpkong/Octree.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
744 B
31 lines
744 B
4 years ago
|
/**
|
||
|
* ------------------------------------
|
||
|
* @author: Weipeng Kong
|
||
|
* @date: 2021/11/17
|
||
|
* @email: yjxkwp@foxmail.com
|
||
|
* @site: https://donot.fit
|
||
|
* @description:
|
||
|
* ------------------------------------
|
||
|
**/
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <igl/marching_cubes.h>
|
||
|
#include <igl/voxel_grid.h>
|
||
|
#include <igl/writeOBJ.h>
|
||
|
#include <igl/readOBJ.h>
|
||
|
#include <igl/read_triangle_mesh.h>
|
||
|
#include <igl/in_element.h>
|
||
|
#include <boost/log/trivial.hpp>
|
||
|
#include <boost/filesystem.hpp>
|
||
|
#include <Eigen/Core>
|
||
|
#include "test-path.h"
|
||
|
|
||
|
int main() {
|
||
|
auto mesh_path = boost::filesystem::path(LOCAL_TEST_DATA_BASE_PATH) / "quarter_sphere.obj";
|
||
|
Eigen::MatrixXd V;
|
||
|
Eigen::MatrixXi F;
|
||
|
igl::read_triangle_mesh(mesh_path.string(), V, F);
|
||
|
|
||
|
return 0;
|
||
|
}
|