-
-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--output
with multiple file groups could create multiple png outputs
#10
Comments
I think it's out of scope, one can just do: for f in ./files/*; do
f3d $f --output=output_$f.png
done |
Still, current behavior is not super nice:
|
Need #653 to move forward |
I think However if you really want multiple outputs you could use a templating mechanism as proposed in #1194 so that |
related to #46 |
--output
with multiple file groups could create multiple png outputs
Context
F3D supports opening multiple file groups and saving png outputs, lets bring these features together in order to be able to save multiple images when opening multiple file groups
Suggested solution
When opening multiple file groups, rely on filename templating to write different files.
eg :
f3d ./files/* --output=output_{model}.png
Could create output_model1.png, output_model2.png ..
The text was updated successfully, but these errors were encountered: