kcc5
Class KCC_EveningSky8Map

Object
  extended by common:Generic
      extended by common:GradientWrapper
          extended by kcc5:KCC_ColorMapBase
              extended by kcc5:KCC_EveningSky8Map

class 
KCC_ColorMapBase:KCC_EveningSky8Map

Class for defining the preset Evening Sky 8 color map.

This class defines the Evening Sky 8 color map and allows the user to customize any of the ranges as desired.

For an example of what this map looks like, click here.


Ultra Fractal Source

Toggle UF Source Code Display

 class KCC_EveningSky8Map( KCC_ColorMapBase ) {
 ; Class for defining the preset Evening Sky 8 color map.
 ; <p>
 ; This class defines the Evening Sky 8 color map and allows the user to
 ; customize any of the ranges as desired.
 ; <p>
 ; For an example of what this map looks like,
 ; <a href="../additional/kcc5/images/Evening Sky 8 Map.jpg">click here</a>.
 ;
 public:
   import "common.ulb"
   
   ; Constructor
   func KCC_EveningSky8Map( Generic pparent )
     KCC_ColorMapBase( pparent )
 
     ; Created by Toby Marshall.
     colorMap[0,0] = @eveningSky8Max1, colorMap[0,1] = @eveningSky8Min1
     colorMap[1,0] = @eveningSky8Max2, colorMap[1,1] = @eveningSky8Min2
     colorMap[2,0] = @eveningSky8Max3, colorMap[2,1] = @eveningSky8Min3
     colorMap[3,0] = @eveningSky8Max4, colorMap[3,1] = @eveningSky8Min4
     colorMap[4,0] = @eveningSky8Max5, colorMap[4,1] = @eveningSky8Min5
     colorMap[5,0] = @eveningSky8Max6, colorMap[5,1] = @eveningSky8Min6
     colorMap[6,0] = @eveningSky8Max7, colorMap[6,1] = @eveningSky8Min7
     colorMap[7,0] = @eveningSky8Max8, colorMap[7,1] = @eveningSky8Min8
     colorRanges = @colorRanges
   endfunc
 
 private:
 
 default:
   title = "Evening Sky 8 Map"
 
   int param v_KCC_EveningSky8Map
     caption = "Version (KCC_EveningSky8Map)"
     default = 100
     hint = "This version parameter is used to detect when a change has been \
             made to the formula that is incompatible with the previous version. \
             When that happens, this field will reflect the old version number to \
             alert you to the fact that an alternate rendering is being used."
     visible = @v_KCC_EveningSky8Map < 100
   endparam
 
 ;--------------------------------------------------------------------
 ; Color Defaults for Evening Sky 8
 ;--------------------------------------------------------------------
 
   heading
     caption = "    Evening Sky 8 Map Settings"
     visible = (@customize)
   endheading
 
   color param eveningSky8Max1
     caption = "Color Range 1 High"
     default = rgb(255/255,238/255,222/255)
     hint = "Specifies the color at the high end of Range #1."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min1
     caption = "Color Range 1 Low"
     default = rgb(50/255,35/255,35/255)
     hint = "Specifies the color at the low end of Range #1."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max2
     caption = "Color Range 2 High"
     default = rgb(255/255,226/255,85/255)
     hint = "Specifies the color at the high end of Range #2."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min2
     caption = "Color Range 2 Low"
     default = rgb(85/255,54/255,0/255)
     hint = "Specifies the color at the low end of Range #2."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max3
     caption = "Color Range 3 High"
     default = rgb(249/255,148/255,216/255)
     hint = "Specifies the color at the high end of Range #3."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min3
     caption = "Color Range 3 Low"
     default = rgb(79/255,20/255,57/255)
     hint = "Specifies the color at the low end of Range #3."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max4
     caption = "Color Range 4 High"
     default = rgb(159/255,159/255,255/255)
     hint = "Specifies the color at the high end of Range #4."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min4
     caption = "Color Range 4 Low"
     default = rgb(22/255,16/255,54/255)
     hint = "Specifies the color at the low end of Range #4."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max5
     caption = "Color Range 5 High"
     default = rgb(255/255,175/255,79/255)
     hint = "Specifies the color at the high end of Range #5."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min5
     caption = "Color Range 5 Low"
     default = rgb(62/255,42/255,0/255)
     hint = "Specifies the color at the low end of Range #5."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max6
     caption = "Color Range 6 High"
     default = rgb(124/255,190/255,251/255)
     hint = "Specifies the color at the high end of Range #6."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min6
     caption = "Color Range 6 Low"
     default = rgb(13/255,40/255,62/255)
     hint = "Specifies the color at the low end of Range #6."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max7
     caption = "Color Range 7 High"
     default = rgb(255/255,111/255,123/255)
     hint = "Specifies the color at the high end of Range #7."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min7
     caption = "Color Range 7 Low"
     default = rgb(57/255,24/255,0/255)
     hint = "Specifies the color at the low end of Range #7."
     visible = (@customize)
   endparam
 
   color param eveningSky8Max8
     caption = "Color Range 8 High"
     default = rgb(111/255,255/255,245/255)
     hint = "Specifies the color at the high end of Range #8."
     visible = (@customize)
   endparam
 
   color param eveningSky8Min8
     caption = "Color Range 8 Low"
     default = rgb(0/255,60/255,64/255)
     hint = "Specifies the color at the low end of Range #8."
     visible = (@customize)
   endparam
 }
 


Constructor Summary
KCC_EveningSky8Map()
           
KCC_EveningSky8Map(Generic pparent)
          Constructor
 
Method Summary
 
Methods inherited from class kcc5:KCC_ColorMapBase
getColorChannel, perturb8RangeMap, perturbRanges
 
Methods inherited from class common:GradientWrapper
getColor
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

KCC_EveningSky8Map

public KCC_EveningSky8Map(Generic pparent)
Constructor


KCC_EveningSky8Map

public KCC_EveningSky8Map()