|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Please allow me to publish a PovRay video from my Homepage to this Newsgroup.
http://www.alzinger.de/cms/index.php?id=166
This Video was rendered entirely with PovRay. The 5300 lines of source are
separated in 1 main file and 5 includes. The film was rendered on an Intel i5
in 9 days and 23 hours in one piece. The 3800 .png files are fit together
with VitualDub.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 14/11/2011 9:18 PM, robert alzinger wrote:
> Please allow me to publish a PovRay video from my Homepage to this Newsgroup.
I am glad that you did. It is really very well done and a good choice of
music. (What is it, it sounds familiar?)
Bravo!
--
Regards
Stephen
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
robert alzinger <nomail@nomail> wrote:
> http://www.alzinger.de/cms/index.php?id=166
It's very cool. But may I make an improvement suggestion to the animation?
Apply an easing function to all the movements (in other words, rather than
a movement being linear, making it accelerating and decelerating), except
for the ants. That will make it look much nicer.
This is one simple way of doing that:
#macro EaseInOut(TimeValue) // TimeValue must be in the range [0, 1]
0.5 - cos(TimeValue*pi)/2
#end
// Instead of eg. "translate x * 5 * clock", do it like:
#declare EasedClock = EaseInOut(clock);
translate x * 5 * EasedClock
--
- Warp
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 14.11.2011 22:18, schrieb robert alzinger:
> Please allow me to publish a PovRay video from my Homepage to this Newsgroup.
>
> http://www.alzinger.de/cms/index.php?id=166
>
> This Video was rendered entirely with PovRay. The 5300 lines of source are
> separated in 1 main file and 5 includes. The film was rendered on an Intel i5
> in 9 days and 23 hours in one piece. The 3800 .png files are fit together
> with VitualDub.
Beautiful!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Warp <war### [at] tagpovrayorg> wrote:
> #macro EaseInOut(TimeValue) // TimeValue must be in the range [0, 1]
> 0.5 - cos(TimeValue*pi)/2
> #end
> --
> - Warp
hello,
i was thinking about something similar a few weeks ago... but there was no time
to do this.
something like
sigm(x)=1/(1+exp(-x))
but you are right cos is much more easier. :-)
The film is running in -6 < Clock < 33
All my scenes are running in x < clock < x+1
so it is very easy to implement your macro.
thanks robert
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 14-11-2011 22:18, robert alzinger wrote:
> Please allow me to publish a PovRay video from my Homepage to this Newsgroup.
>
Very beautiful! and a nice way to show how csg works.
I suggest to have this video included into the POV-Ray tutorials.
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 11/14/2011 05:00 PM, Stephen wrote:
> On 14/11/2011 9:18 PM, robert alzinger wrote:
>> Please allow me to publish a PovRay video from my Homepage to this
>> Newsgroup.
>
> I am glad that you did. It is really very well done and a good choice of
> music. (What is it, it sounds familiar?)
> Bravo!
>
>
yep 2nd that ... very nice indeed!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> yep 2nd that ... very nice indeed!
thanks a lot to all.
> I suggest to have this video included into the POV-Ray tutorials.
yes please. I would be happy, to see the video in the POV-Ray tutorials.
and maybe to "POV-Ray-related News" at the Pov-Ray main page?
> choice of music. (What is it, it sounds familiar?)
it is a free track from youtube "He Leadeth Me".
> #macro EaseInOut(TimeValue)
thanks to Warp
now it is implemented in version 2,
the same URL
http://www.alzinger.de/cms/index.php?id=166
robert
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
robert alzinger <nomail@nomail> wrote:
> > #macro EaseInOut(TimeValue)
> thanks to Warp
> now it is implemented in version 2,
> the same URL
> http://www.alzinger.de/cms/index.php?id=166
It look significantly better now!
--
- Warp
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I just watched this, quite humorous. The ants were an interesting touch
(the ? marks also were). I think it's rather inspiring and people who
haven't thought about doing anything with their creations are likely to
be inspired (of course I would need to find my creations).
Fun to watch (although I'm sure it was fun to make as well).
On 11/14/11 21:18, robert alzinger wrote:
> Please allow me to publish a PovRay video from my Homepage to this Newsgroup.
>
> http://www.alzinger.de/cms/index.php?id=166
>
> This Video was rendered entirely with PovRay. The 5300 lines of source are
> separated in 1 main file and 5 includes. The film was rendered on an Intel i5
> in 9 days and 23 hours in one piece. The 3800 .png files are fit together
> with VitualDub.
>
>
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |