Fix test of concept

This commit is contained in:
Andreas Fabri 2018-11-13 09:54:17 +01:00
parent 781191fb2c
commit c60b8571e5
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ int main()
//read in mesh
Surface_mesh sm;
if(sm.is_empty()){
return 0;
}
//the heat intensity will hold the distance values from the source set
Vertex_distance_map heat_intensity = sm.add_property_map<vertex_descriptor, double>("v:heat_intensity", 0).first;