POV-Ray : Newsgroups : povray.newusers : "Floor" plane with tiled/checkered image : Re: "Floor" plane with tiled/checkered image Server Time
25 Apr 2024 08:47:54 EDT (-0400)
  Re: "Floor" plane with tiled/checkered image  
From: neri-engineering
Date: 25 Oct 2022 19:50:00
Message: <web.63587604ba2938175b7d57295087cf4f@news.povray.org>
> Ah, this makes sense.  I will try that.  The strange behavior I'm seeing is
> consistent with your explanation.

I got it.  The snippet below works as expected.  The 'emission' is because I'm
using radiosity and want the shadow cast onto the floor to be a tad less dark,
'diffuse' limits how bright the floor is.  Thanks for the help.
========================================================

plane {
  y, -4
  pigment {
    image_map {
      jpeg "wood.jpg"
      map_type 0
    }
    rotate 90 * x
  }
  finish {
    specular 0.0
    diffuse 0.45
    emission 0.06
  }
  scale <53, 1, 53>
  rotate <0, 65, 0>
}


Post a reply to this message

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