You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Path to the input file where the particle positions are stored (supported formats: VTK 4.2, VTU, binary f32 XYZ, PLY, BGEO)
33
33
#[arg(help_heading = ARGS_IO, short = 'i', long, group = "input", value_parser = value_parser!(PathBuf))]
34
34
pubinput_file:Option<PathBuf>,
35
-
/// Path to a sequence of particle files that should be processed, use `{}` in the filename to indicate a placeholder
35
+
/// Path to a sequence of particle files that should be processed, use "{}" in the filename to indicate a placeholder. To specify an output format, use e.g. --output_file="filename_{}.obj".
36
36
#[arg(help_heading = ARGS_IO, short = 's', long, group = "input", value_parser = value_parser!(PathBuf))]
37
37
pubinput_sequence:Option<PathBuf>,
38
38
/// Filename for writing the reconstructed surface to disk (default: "{original_filename}_surface.vtk")
@@ -574,14 +574,20 @@ mod arguments {
574
574
}
575
575
}
576
576
577
-
// Make sure that we have a placeholder \"{}\" in the filename part of the sequence pattern
577
+
// Make sure that we have a placeholder "{}" in the filename part of the sequence pattern
578
578
if input_filename.contains("{}"){
579
-
let input_stem = input_pattern.file_stem().unwrap().to_string_lossy();
580
-
// Currently, only VTK files are supported for output
0 commit comments