POV-Ray : Newsgroups : povray.text.scene-files : Superellipsoids & Orthographic Camera - Bug ? Server Time
28 Jul 2024 14:33:57 EDT (-0400)
  Superellipsoids & Orthographic Camera - Bug ? (Message 1 to 1 of 1)  
From: Peter Houston
Subject: Superellipsoids & Orthographic Camera - Bug ?
Date: 15 May 2000 04:40:55
Message: <391fb817@news.povray.org>
Here is the code for the image posted in p.b.i


// Start of Code

camera {
    location  <0.0, 0, -10>
    right     4/3*x
    look_at   <0.0, 0.0,  0.0>
    orthographic
}

light_source {
    <0,0,-30>
    color rgb 1
}

background {color rgb 1}

superellipsoid {<.75,.25> pigment {rgb x}
    rotate x*0
    translate <-5,2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb x}
    rotate x*45
    translate <-2.5,2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb x}
    rotate x*90
    translate <2.5,2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb x}
    rotate x*135
    translate <5,2.5,0>
}

superellipsoid {<.75,.25> pigment {rgb y}
    rotate y*0
    translate <-5,0,0>
}
superellipsoid {<.75,.25> pigment {rgb y}
    rotate y*45
    translate <-2.5,0,0>
}
superellipsoid {<.75,.25> pigment {rgb y}
    rotate y*90
    translate <2.5,0,0>
}
superellipsoid {<.75,.25> pigment {rgb y}
    rotate y*135
    translate <5,0,0>
}

superellipsoid {<.75,.25> pigment {rgb z}
    rotate z*0
    translate <-5,-2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb z}
    rotate z*45
    translate <-2.5,-2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb z}
    rotate z*90
    translate <2.5,-2.5,0>
}
superellipsoid {<.75,.25> pigment {rgb z}
    rotate z*135
    translate <5,-2.5,0>
}

// End of Code


Post a reply to this message

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