|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
It might be a strange topic for this forum and tool. I am very interested
in povray much as i am with its musical counterpart (unofficially) csound.
I am though, primarily interested in two dimensionality. I'm curious if
there are any roundabout ways to achieve that in Povray. I'm wondering if
it requires awkward (and possibly impractical) use of lighting and
placement of lighting.
Also, are there methods of constructing generative works with povray or am I
way off with these noob questions? Thanks.
Estevan
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> I am though, primarily interested in two dimensionality.
With the orthographic camera type, you can create certain kinds of 2D images
without trouble. You can either place a light source in 3D space to get 3D
lighting, or you can use finish {ambient 1 diffuse 0} to ignore light
sources and light all objects uniformly (their pigment will be the only
factor of their color). You will still have to place objects in 3D space,
because closer objects will block out farther ones.
I'm not sure what a "generative work" is.
- Slime
[ http://www.slimeland.com/ ]
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
>I'm not sure what a "generative work" is.
Yeah, I was also thinking it.
news:4305bf0d$1@news.povray.org...
>> I am though, primarily interested in two dimensionality.
>
> With the orthographic camera type, you can create certain kinds of 2D
> images
> without trouble. You can either place a light source in 3D space to get 3D
> lighting, or you can use finish {ambient 1 diffuse 0} to ignore light
> sources and light all objects uniformly (their pigment will be the only
> factor of their color). You will still have to place objects in 3D space,
> because closer objects will block out farther ones.
>
> I'm not sure what a "generative work" is.
>
> - Slime
> [ http://www.slimeland.com/ ]
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Estevan Carlos wrote:
>
> Also, are there methods of constructing generative works with povray or am I
> way off with these noob questions? Thanks.
>
Perhaps by "generative works" you mean, for example, something like
taking digitally recorded sound and using it as a basis for making
animated color patterns?
If so, POV-Ray's scripted interface is one of it's most important
features. But how you generate the script is up to you. POV-Ray's
Scene Description Language is a complete programming language, and is
often used to generate itself, but I expect that it is equally common to
use another external language to generate SDL. One reason would the
relatively weak ability of SDL when reading in data files.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |