POV-Ray : Newsgroups : povray.general : Why can't I on normals? : Re: Why can't I on normals? Server Time
10 Aug 2024 03:21:15 EDT (-0400)
  Re: Why can't I on normals?  
From: H E  Day
Date: 18 Mar 2000 00:36:39
Message: <38D3146A.A48F022@fci.net>
> Why can't I do something like:
>
>  normal{
>         function {noise3d(x,y,z)}
>                normal_map {
>                           [0.00  up]
>                           [0.20  up]
>                           [ 0.21 down]
>                           [ 1.0   down]
>                           }
>                 }
>

It needs to be:

 normal{
        function {noise3d(x,y,z)}
               normal_map {
                          [0.00  1]
                          [0.20  1]
                          [ 0.21 0]
                          [ 1.0   0]
                          }
                }


Plus it needs to be in a texture {} statement (or at least should be).

--
H.E. Day


Post a reply to this message

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