diff --git a/applications/isotropic_remeshing/examples/raw/camel_uv.json b/applications/isotropic_remeshing/examples/raw/camel_uv.json new file mode 100644 index 0000000000..a038888f41 --- /dev/null +++ b/applications/isotropic_remeshing/examples/raw/camel_uv.json @@ -0,0 +1,32 @@ +{ + "input": { + "path": "multimesh/camel.hdf5", + "name_spec": {"pos": "uv"} + }, + "position_attributes": "pos.uv/vertices", + "other_position_attribute": "pos/vertices", + "iterations": 60, + "length_rel": 0.01, + "envelope_size": 1e-2, + "lock_boundary": true, + "edge_swap_mode": "valence", + "use_for_periodic": false, + "dont_disable_split": false, + "fix_uv_seam": true, + "output": { + "path": "camel.hdf5", + "type": ".hdf5" + }, + "intermediate_output_format": { + "pos": { + "path": "cameluv_{:04}", + "type": ".vtu", + "position_attribute": "vertices" + }, + "pos.uv": { + "path": "cameluv_uv_{:04}", + "type": ".vtu", + "position_attribute": "vertices" + } + } +} diff --git a/applications/isotropic_remeshing/examples/raw/plane.json b/applications/isotropic_remeshing/examples/raw/plane.json new file mode 100644 index 0000000000..6e9dcb8521 --- /dev/null +++ b/applications/isotropic_remeshing/examples/raw/plane.json @@ -0,0 +1,31 @@ +{ + "input": { + "path": "plane_dense.hdf5", + "0path": "2d/4triangles.msh", + "name_spec": "pos" + }, + "use_split": false, + "use_collapse": false, + "0use_smooth": false, + "0use_swap": false, + "position_attribute": "pos/vertices", + "inversion_position_attribute": "pos/vertices", + "iterations": 5, + "length_rel": 0.05, + "envelope_size": 1e-2, + "lock_boundary": false, + "edge_swap_mode": "valence", + "use_for_periodic": false, + "fix_uv_seam": false, + "output": { + "path": "plane.hdf5", + "type": ".hdf5" + }, + "intermediate_output_format": { + "pos": { + "path": "plane_{:04}", + "type": ".vtu", + "position_attribute": "vertices" + } + } +}