Martin Thümmel baa09d6385 Added wrl texture support. 5 年 前
..
copyleft baa09d6385 Added wrl texture support. 5 年 前
embree baa09d6385 Added wrl texture support. 5 年 前
mosek baa09d6385 Added wrl texture support. 5 年 前
predicates baa09d6385 Added wrl texture support. 5 年 前
CMakeLists.txt baa09d6385 Added wrl texture support. 5 年 前
accumarray.cpp baa09d6385 Added wrl texture support. 5 年 前
avg_edge_length.cpp baa09d6385 Added wrl texture support. 5 年 前
bbw.cpp baa09d6385 Added wrl texture support. 5 年 前
boundary_facets.cpp baa09d6385 Added wrl texture support. 5 年 前
boundary_loop.cpp baa09d6385 Added wrl texture support. 5 年 前
cat.cpp baa09d6385 Added wrl texture support. 5 年 前
circulation.cpp baa09d6385 Added wrl texture support. 5 年 前
cotmatrix.cpp baa09d6385 Added wrl texture support. 5 年 前
cotmatrix_entries.cpp baa09d6385 Added wrl texture support. 5 年 前
cotmatrix_intrinsic.cpp baa09d6385 Added wrl texture support. 5 年 前
cumprod.cpp baa09d6385 Added wrl texture support. 5 年 前
cumsum.cpp baa09d6385 Added wrl texture support. 5 年 前
cut_to_disk.cpp baa09d6385 Added wrl texture support. 5 年 前
decimate.cpp baa09d6385 Added wrl texture support. 5 年 前
dirname.cpp baa09d6385 Added wrl texture support. 5 年 前
doublearea.cpp baa09d6385 Added wrl texture support. 5 年 前
edge_exists_near.cpp baa09d6385 Added wrl texture support. 5 年 前
edge_flaps.cpp baa09d6385 Added wrl texture support. 5 年 前
edge_lengths.cpp baa09d6385 Added wrl texture support. 5 年 前
grad.cpp baa09d6385 Added wrl texture support. 5 年 前
grad_intrinsic.cpp baa09d6385 Added wrl texture support. 5 年 前
grid.cpp baa09d6385 Added wrl texture support. 5 年 前
guess_extension.cpp baa09d6385 Added wrl texture support. 5 年 前
intrinsic_delaunay_cotmatrix.cpp baa09d6385 Added wrl texture support. 5 年 前
intrinsic_delaunay_triangulation.cpp baa09d6385 Added wrl texture support. 5 年 前
is_delaunay.cpp baa09d6385 Added wrl texture support. 5 年 前
is_edge_manifold.cpp baa09d6385 Added wrl texture support. 5 年 前
is_intrinsic_delaunay.cpp baa09d6385 Added wrl texture support. 5 年 前
is_symmetric.cpp baa09d6385 Added wrl texture support. 5 年 前
ismember.cpp baa09d6385 Added wrl texture support. 5 年 前
list_to_matrix.cpp baa09d6385 Added wrl texture support. 5 年 前
pathinfo.cpp baa09d6385 Added wrl texture support. 5 年 前
per_face_normals.cpp baa09d6385 Added wrl texture support. 5 年 前
qslim.cpp baa09d6385 Added wrl texture support. 5 年 前
randperm.cpp baa09d6385 Added wrl texture support. 5 年 前
readDMAT.cpp baa09d6385 Added wrl texture support. 5 年 前
readMESH.cpp baa09d6385 Added wrl texture support. 5 年 前
readOBJ.cpp baa09d6385 Added wrl texture support. 5 年 前
readOFF.cpp baa09d6385 Added wrl texture support. 5 年 前
seam_edges.cpp baa09d6385 Added wrl texture support. 5 年 前
segment_segment_intersect.cpp baa09d6385 Added wrl texture support. 5 年 前
setdiff.cpp baa09d6385 Added wrl texture support. 5 年 前
slice.cpp baa09d6385 Added wrl texture support. 5 年 前
slice_into.cpp baa09d6385 Added wrl texture support. 5 年 前
sort.cpp baa09d6385 Added wrl texture support. 5 年 前
squared_edge_lengths.cpp baa09d6385 Added wrl texture support. 5 年 前
tet_tet_adjacency.cpp baa09d6385 Added wrl texture support. 5 年 前
triangle_triangle_adjacency.cpp baa09d6385 Added wrl texture support. 5 年 前
triangulated_grid.cpp baa09d6385 Added wrl texture support. 5 年 前
unique.cpp baa09d6385 Added wrl texture support. 5 年 前
unique_simplices.cpp baa09d6385 Added wrl texture support. 5 年 前
upsample.cpp baa09d6385 Added wrl texture support. 5 年 前

readMESH.cpp

#include
#include
TEST(readMESH, simple) {
Eigen::MatrixXd V, TC;
Eigen::MatrixXi F;
// wait... so this is actually testing test_common::load_mesh not readMESH
// directly...
// test_common::load_mesh("F0001_AN01WH_F3D.wrl", V, F, TC);
test_common::load_mesh("000.wrl", V, F, TC);
printf("%d\n", V.rows());
ASSERT_EQ(36678, V.rows());
// ASSERT_EQ(, F.rows());
}