(2016-05-19, 2:43)Tanner S. Wrote: Cool, and thanks so much for your help. I'm sorry, but I have one last question.
Is there a way to make it render at specific angles, rather than using a "counter" per say. It doesn't appear that the program is able to render half-degrees, and I need it to output a series of images at the angles: 0, 22, 45, 67, 90, etc. Can this be done?
First of all, I believe that the LDView command line supports real numbers there, not just integers, so 22.5 should work fine. Secondly, I think you can update the following line to use specific values instead of a loop from 0 to 359:
Code:
FOR /L %%L IN (0,1,359) DO (
Change it to look like this instead:
Code:
FOR %%L IN (0,22.5,45,67.5,90) DO (
Put whatever angles you want inside the parentheses. (Don't forget to also remove the /L.)