Skip to content

Commit

Permalink
Merge pull request #937 from DLR-AMR/fix-missing-cmesh-vtk-scale-para…
Browse files Browse the repository at this point in the history
…meter-deletions

Removed missing scale parameter deletions.
  • Loading branch information
Davknapp authored Feb 13, 2024
2 parents d9fc5e0 + e3644ac commit bd82ee6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/cmesh/t8_cmesh_geometry_examples.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ main (int argc, char **argv)

t8_forest_t forest = t8_forest_new_uniform (cmesh, t8_scheme_new_default_cxx (), uniform_level, 0, comm);

t8_cmesh_vtk_write_file (cmesh, prefix_cmesh, 1.0);
t8_cmesh_vtk_write_file (cmesh, prefix_cmesh);
t8_global_productionf ("Wrote %s.\n", prefix_cmesh);

t8_write_forest_to_vtu (forest, prefix_forest);
Expand Down Expand Up @@ -223,7 +223,7 @@ main (int argc, char **argv)

t8_forest_t forest = t8_forest_new_uniform (cmesh, t8_scheme_new_default_cxx (), uniform_level, 0, comm);

t8_cmesh_vtk_write_file (cmesh, prefix_cmesh, 1.0);
t8_cmesh_vtk_write_file (cmesh, prefix_cmesh);
t8_global_productionf ("Wrote %s.\n", prefix_cmesh);

t8_write_forest_to_vtu (forest, prefix_forest);
Expand All @@ -247,7 +247,7 @@ main (int argc, char **argv)

t8_forest_t forest = t8_forest_new_uniform (cmesh, t8_scheme_new_default_cxx (), uniform_level, 0, comm);

t8_cmesh_vtk_write_file (cmesh, prefix_cmesh, 1.0);
t8_cmesh_vtk_write_file (cmesh, prefix_cmesh);
t8_global_productionf ("Wrote %s.\n", prefix_cmesh);

t8_write_forest_to_vtu (forest, prefix_forest);
Expand Down

0 comments on commit bd82ee6

Please sign in to comment.