| This isn't really a bug, and I think this has always been like this, but it
seems to me that spiral2 doesn't operate as described:
"The spiral2 pattern creates a double spiral that winds around the z-axis
similar to spiral1 except that it has two overlapping spirals which twist in
opposite directions. "
When looking at the pattern it seems to be rather a mix of spiral 1 and
radial.  One set of arms spiralling, and the other set radiating.
-tqg
sample code:
---start---
camera {location  z*4 look_at 0}
light_source {0
  color 1
  translate z*4
}
box{-1 1
  pigment{
    spiral2 10
    color_map{
      [0.0 rgb 1]
      [0.5 rgb 1]
      [0.5 rgb 0]
      [1.0 rgb 0]
    }
  }
}
---end---
Post a reply to this message
 |