|
|
I'm interested in making some web comics with povray. I've started and the
part I hate the most involves cutting and pasting and RESIZING images over
to a presentation or drawing program. It would be cool if it could be
done with one povray render. I don't mind doing a lot of SDL coding if it
could save me a little bit of mouse work in an image manipulator.
Any ideas on how to do this? Say I want one frame to be an outdoor scene,
another to be characters in pose 1, another set of characters in pose 2.
These are the ways I can imagine so far:
1) A high-level scene file that arranges previously-rendered bitmaps
together;
2) Use of one of those Megapov features where the pigment is the view from a
camera at place 3, etc. It could get complicated to have a complete movie
studio, with one set in the northeast, another in southeast, etc. etc.
Any other ideas anyone could offer, complete with condensed pseudo code?
Post a reply to this message
|
|
|
|
Wasn't it gregjohn who wrote:
>I'm interested in making some web comics with povray. I've started and the
>part I hate the most involves cutting and pasting and RESIZING images over
>to a presentation or drawing program. It would be cool if it could be
>done with one povray render. I don't mind doing a lot of SDL coding if it
>could save me a little bit of mouse work in an image manipulator.
>
>
>Any ideas on how to do this? Say I want one frame to be an outdoor scene,
>another to be characters in pose 1, another set of characters in pose 2.
>
>These are the ways I can imagine so far:
>
>1) A high-level scene file that arranges previously-rendered bitmaps
>together;
>2) Use of one of those Megapov features where the pigment is the view from a
>camera at place 3, etc. It could get complicated to have a complete movie
>studio, with one set in the northeast, another in southeast, etc. etc.
The MegaPOV method doesn't have to be very complicated. You just have to
make sure that each of your sets, and the image assembly area, are
closed. For outdoor scenes that means replacing the background or
sky_sphere with a sphere of finite size. You can then build a separate
set for each scene. MegaPOV doesn't care if the camera_views are taken
from positions in rooms that are hundreds of miles apart.
Write the SDL for each panel as if it were the only scene, but allow for
an offset vector to be supplied which moves the entire scene to a
different location, translating all the objects, lights and camera
positions.
You could develop and test each panel separately, and declare a local
value for the offset if the panel SDL is being run directly.
#ifndef (Offset)
#local Offset = <0,0,0>;
#end
The panel SDL would calculate the camera details using the offset and
#declare them globally so that the overall page SDL can use the same
positions for the camera_views.
#declare Camera_Pos = <0,10,-30> + Offset;
#declare Camera_Look = <0,5,0> + Offset;
camera {location Camera_Pos look_at Camera_Look}
The page SDL would then do something like this for each panel:
#declare Offset = <1000,0,0>;
#include "panel01.pov"
box {<-1,-1,0><1,1,0.01>
pigment {camera_view {location Camera_Pos look_at Camera_Look}}
}
--
Mike Williams
Gentleman of Leisure
Post a reply to this message
|
|
|
|
"Model Citizen" <nomail@nomail> wrote:
> > >I'm interested in making some web comics with povray.
>
> That sounds interesting. (Now the dumb questions...)
> What is a web comic? Can you provide a link to an example?
http://del.icio.us/pterandon/comics
http://pterandon.blogspot.com/2005/02/first-rough-draft-of-page-1-of-comic_11.html
And thanks for the ideas, Mike. I especially like the idea of spheres--
like bubbles of alternate realities-- instead of the 2-d movie-studio
thinking I was stuck in, which had me practically stuck with four sets.
And someone may RFTM me for this, but I was fascinated that Megapov's
camera pigment actually would do radiosity for both the "actual image" and
the image in the pigment.
Post a reply to this message
|
|
|
|
On Tue, 15 Mar 2005 15:38:35 EST, "gregjohn" <pte### [at] yahoocom> wrote:
> Any ideas on how to do this? Say I want one frame to be an outdoor scene,
> another to be characters in pose 1, another set of characters in pose 2.
I once made a short comics story with POV which I cannot find now :-(
What I remember is that I heavily used standard screen.inc include file.
ABX
Post a reply to this message
|
|