kcc5
Class KCC_BlueSilver2Map

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

class 
KCC_ColorMapBase:KCC_BlueSilver2Map

Class for defining the preset Blue/Silver 2 color map.

This class defines the Blue/Silver 2 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_BlueSilver2Map( KCC_ColorMapBase ) {
 ; Class for defining the preset Blue/Silver 2 color map.
 ; <p>
 ; This class defines the Blue/Silver 2 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/Blue Silver 2 Map.jpg">click here</a>.
 ;
 public:
   import "common.ulb"
   
   ; Constructor
   func KCC_BlueSilver2Map( Generic pparent )
     KCC_ColorMapBase( pparent )
 
     ;
     colorMap[0,0] = @blueSilver2Max1, colorMap[0,1] = @blueSilver2Min1
     colorMap[1,0] = @blueSilver2Max2, colorMap[1,1] = @blueSilver2Min2
     colorRanges = @colorRanges
   endfunc
 
 private:
 
 default:
   title = "Blue/Silver 2 Map"
 
   int param v_KCC_BlueSilver2Map
     caption = "Version (TraKCC_BlueSilver2Mapnsform)"
     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_BlueSilver2Map < 100
   endparam
 
   int param colorRanges
     caption = "# of Ranges"
     min = 1
     max = 2
     default = 2
   endparam
 
 ;--------------------------------------------------------------------
 ; Color Defaults for Blue/Silver 2
 ;--------------------------------------------------------------------
 
   heading
     caption = "    Blue/Silver 2 Map Settings"
     visible = (@customize)
   endheading
 
   color param blueSilver2Max1
     caption = "Color Range 1 High"
     default = rgb(64/255,64/255,255/255)
     hint = "Specifies the color at the high end of Range #1."
     visible = (@customize)
   endparam
 
   color param blueSilver2Min1
     caption = "Color Range 1 Low"
     default = rgb(0/255,0/255,97/255)
     hint = "Specifies the color at the low end of Range #1."
     visible = (@customize)
   endparam
 
   color param blueSilver2Max2
     caption = "Color Range 2 High"
     default = rgb(255/255,255/255,255/255)
     hint = "Specifies the color at the high end of Range #2."
     visible = (@customize)
   endparam
 
   color param blueSilver2Min2
     caption = "Color Range 2 Low"
     default = rgb(97/255,97/255,97/255)
     hint = "Specifies the color at the low end of Range #2."
     visible = (@customize)
   endparam
 }
 


Constructor Summary
KCC_BlueSilver2Map()
           
KCC_BlueSilver2Map(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_BlueSilver2Map

public KCC_BlueSilver2Map(Generic pparent)
Constructor


KCC_BlueSilver2Map

public KCC_BlueSilver2Map()