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

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