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

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