POV-Ray : Newsgroups : povray.binaries.images : fruit : Re: fruit Server Time
20 Apr 2024 02:00:20 EDT (-0400)
  Re: fruit  
From: And
Date: 22 Jan 2019 01:05:01
Message: <web.5c46b1b14f300921f82eb7cf0@news.povray.org>
"Bald Eagle" <cre### [at] netscapenet> wrote:
> "And" <49341109@ntnu.edu.tw> wrote:
> > spiral placing. The texture is subsurface scattering.
>
> Hey - that's pretty nice!  :)
>
> I've seen a few animations where they show Fibonacci sequence constructed pine
> cones, sunflowers, fruits, etc, and gradually transition from a planar spiral
> arrangement to a 3D spiral arrangement such as in your composite-fruit berry.
>

Well, my spiral distribution is
#for(i, 0, resolution-1)
    #local Z = -1+2*(1/2+i)/resolution;
    #local R = sqrt(1-Z*Z);
    #local Phi = i *2*pi*(1-1/GOLDEN_RATIO);
    #local this_point = <cos(Phi)*R, sin(Phi)*R, Z>;

    // placing at "this_point"
#end

, which is got from Samuel Benge in 2013 or 2014.




> The one that most immediately comes to mind is this:
> http://xahlee.info/math/fibonaci_video_fallacy.html
>
>

I'm not a fan of mathematics (but I ever thought so during my school days),
now I just think it when I need it. I work on supermarket, the only talent
needed is change, and this rely on cashier. When the accounts are messy, I will
angry instead of trying to solve it.

> This was a cool "evolutionary" growth animation:
> https://www.youtube.com/watch?v=1DJGtC1njLQ
> related:
> https://www.youtube.com/watch?v=gMY_JlBfClI


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.