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());
}