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

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