POV-Ray : Newsgroups : povray.advanced-users : Cabinet or 1/2 Cabinet Camera Server Time
30 Jul 2024 12:30:06 EDT (-0400)
  Cabinet or 1/2 Cabinet Camera (Message 1 to 10 of 10)  
From: J  Grimbert
Subject: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 05:15:18
Message: <37D38620.7E9E491A@atos-group.com>
I would like to use pov to render a view like the
own drawn below for a box

  +--+
 /  /|
+--+ |
|  | +
|  |/
+--+

It's just the classical 3D technical drawing...
It looks like the orthographic camera, but 
increase of the z is transformed as p*(x+y),
with p either 1/2, 1 or 3/4 ...

Have anybody any suggestion on how to achieve that ?
 (with all pov-object, of course, not only the box).


Post a reply to this message

From: Bob Hughes
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 05:24:55
Message: <37d38867@news.povray.org>
This may be obvious to others as well, I can't make out your intention
exactly.  I'd suggest posting a drawing if you could.  I'd suggest
HTML formatted posting but that's NOT a good idea since people have a
difficult time with them.  Also I flunked out of being a
"advanced-user" so I probably shouldn't even be here.
 ; b

Bob

J. Grimbert <jgr### [at] atos-groupcom> wrote in message
news:37D38620.7E9E491A@atos-group.com...
>
> I would like to use pov to render a view like the
> own drawn below for a box
>
>   +--+
>  /  /|
> +--+ |
> |  | +
> |  |/
> +--+
>
> It's just the classical 3D technical drawing...
> It looks like the orthographic camera, but
> increase of the z is transformed as p*(x+y),
> with p either 1/2, 1 or 3/4 ...
>
> Have anybody any suggestion on how to achieve that ?
>  (with all pov-object, of course, not only the box).


Post a reply to this message

From: J  Grimbert
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 07:11:59
Message: <37D3A17A.BD64B36F@atos-group.com>
More in p.b.i


Post a reply to this message

From: PoD
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 12:27:36
Message: <37D3EC54.2DF7250@merlin.net.au>
"J. Grimbert" wrote:
> 
> I would like to use pov to render a view like the
> own drawn below for a box
> 
>   +--+
>  /  /|
> +--+ |
> |  | +
> |  |/
> +--+
> 
> It's just the classical 3D technical drawing...
> It looks like the orthographic camera, but
> increase of the z is transformed as p*(x+y),
> with p either 1/2, 1 or 3/4 ...
> 
> Have anybody any suggestion on how to achieve that ?
>  (with all pov-object, of course, not only the box).

Hmm. I can't think of a simple way but _a_ way is to apply a shear
operation to each object at the origin and then translate into position.

Cheers, PoD.


Post a reply to this message

From: ingo
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 14:22:19
Message: <37d4065b@news.povray.org>
PoD <pod### [at] merlinnetau> schreef in berichtnieuws
37D### [at] merlinnetau...
> Hmm. I can't think of a simple way but _a_ way is to apply a shear
> operation to each object at the origin and then translate into
position.
>
> Cheers, PoD.

Or shear the camera?

Ingo


Post a reply to this message

From: Remco de Korte
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 15:16:37
Message: <37D4143C.5F635209@xs4all.nl>
Bob Hughes wrote:
> 
>  Also I flunked out of being a
> "advanced-user" so I probably shouldn't even be here.
>  ; b
> 
> Bob

Come on Bob, why don't we propose a group for the "disadvantaged user" or
something like that?

Remco


Post a reply to this message

From: Peter Popov
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 16:06:26
Message: <tR3UN5VHB2TNddk5bvYgf++2Eap7@4ax.com>
Please see p.b.i for a post called "Is this cabinet view?"


Peter Popov
ICQ: 15002700


Post a reply to this message

From: Bob Hughes
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 6 Sep 1999 21:37:10
Message: <37d46c46@news.povray.org>
Hmmm, yeah.... why not? <jest>

Bob

Remco de Korte <rem### [at] xs4allnl> wrote in message
news:37D4143C.5F635209@xs4all.nl...
> Bob Hughes wrote:
> >
> >  Also I flunked out of being a
> > "advanced-user" so I probably shouldn't even be here.
> >  ; b
> >
> > Bob
>
> Come on Bob, why don't we propose a group for the "disadvantaged
user" or
> something like that?
>
> Remco


Post a reply to this message

From: PoD
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 7 Sep 1999 13:31:39
Message: <37D54CDB.41921DB@merlin.net.au>
ingo wrote:
> 
> PoD <pod### [at] merlinnetau> schreef in berichtnieuws
> 37D### [at] merlinnetau...
> > Hmm. I can't think of a simple way but _a_ way is to apply a shear
> > operation to each object at the origin and then translate into
> position.
> >
> > Cheers, PoD.
> 
> Or shear the camera?
> 
> Ingo

That should work but I wouldn't know how to get it lined up right :(


Post a reply to this message

From: ingo
Subject: Re: Cabinet or 1/2 Cabinet Camera
Date: 7 Sep 1999 18:05:35
Message: <37d58c2f@news.povray.org>
PoD <pod### [at] merlinnetau> schreef in berichtnieuws >
>That should work but I wouldn't know how to get it lined up right :(

Something like this:

// Use -uv on commandline
#version 3.1;
global_settings {assumed_gamma 1.0}
light_source {<500, 500,-500>,1}
#declare Shear= transform {
   matrix <  1,  0,  0,
             0,  1,  0,
            .5,  0,  1,
             0,  0,  0 >
}
camera {
  location  <0.0, 0.5,-2.5>
  look_at   <0.0, 0.5, 0.0>
  angle 65
  transform Shear
}
box {
  <-0.5,0,-0.5>,<0.5,1,0.5>
  pigment {rgb 1}
}


Post a reply to this message

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