reb
Class REB_Sand

Object
  extended by common:Generic
      extended by reb:REB_DirectColorHelper
          extended by reb:REB_Sand

class 
REB_DirectColorHelper:REB_Sand

Provides colors to use with some Direct Coloring classes


Ultra Fractal Source

Toggle UF Source Code Display

 class REB_Sand(REB_DirectColorHelper) {
 ; Provides colors to use with some Direct Coloring classes <br>
 public:
   import "common.ulb"
 
   ; constructor
   func REB_Sand(Generic pparent)
     REB_DirectColorHelper(pparent)
   endfunc
 
   func Init()
     direct[0] = @color1
     direct[1] = @color2
     direct[2] = @color3
     direct[3] = @color4
     direct[4] = @color5
     direct[5] = @color6
     direct[6] = @color7
     direct[7] = @color8
   endfunc
 
 default:
   title = "Sand Array"
   int param v_Sand
     caption = "Version (Sand Colors)"
     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_Sand < 100
   endparam  
   color param color1
     caption = "Color 1"
     default = rgba(224/255,152/255,48/255,1)
   endparam
   color param color2
     caption = "Color 2"
     default = rgba(0/255,40/255,0/255,1)
   endparam
   color param color3
     caption = "Color 3"
     default = rgba(152/255,124/255,76/255,1)
   endparam
   color param color4
     caption = "Color 4"
     default = rgba(252/255,212/255,152/255,1)
   endparam
   color param color5
     caption = "Color 5"
     default = rgba(128/255,104/255,64/255,1)
   endparam
   color param color6
     caption = "Color 6"
     default = rgba(212/255,212/255,212/255,1)
   endparam
   color param color7
     caption = "Color 7"
     default = rgba(100/255,60/255,60/255,1)
   endparam
   color param color8
     caption = "Color 8"
     default = rgba(252/255,172/255,48/255,1)
   endparam
 }
 


Constructor Summary
REB_Sand()
           
REB_Sand(Generic pparent)
          constructor
 
Method Summary
 void Init()
           
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

REB_Sand

public REB_Sand(Generic pparent)
constructor


REB_Sand

public REB_Sand()
Method Detail

Init

public void Init()
Overrides:
Init in class REB_DirectColorHelper