Animated Rotation of Model


RE: Animated Rotation of Model
#10
(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.)
Reply
« Next Oldest | Next Newest »



Messages In This Thread
Animated Rotation of Model - by Tanner S. - 2016-05-14, 1:59
RE: Animated Rotation of Model - by Tanner S. - 2016-05-19, 19:39
RE: Animated Rotation of Model - by Tanner S. - 2016-05-18, 20:48
RE: Animated Rotation of Model - by Travis Cobbs - 2016-05-19, 17:56
RE: Animated Rotation of Model - by Tanner S. - 2016-05-19, 19:54
RE: Animated Rotation of Model - by P Ko - 2020-12-17, 18:33

Forum Jump:


Users browsing this thread: 1 Guest(s)