reb
Class REB_Volcano

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

class 
REB_DirectColorHelper:REB_Volcano

Provides colors to use with some Direct Coloring classes


Ultra Fractal Source

Toggle UF Source Code Display

 class REB_Volcano(REB_DirectColorHelper) {
 ; Provides colors to use with some Direct Coloring classes <br>
 public:
   import "common.ulb"
 
   ; constructor
   func REB_Volcano(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 = "Volcano Array"
   int param v_Volcano
     caption = "Version (Volcano 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_Volcano < 100
   endparam  
   color param color1
     caption = "Color 1"
     default = rgba(0/255,0/255,121/255,1)
   endparam
   color param color2
     caption = "Color 2"
     default = rgba(0/255,0/255,252/255,1)
   endparam
   color param color3
     caption = "Color 3"
     default = rgba(89/255,0/255,163/255,1)
   endparam
   color param color4
     caption = "Color 4"
     default = rgba(252/255,0/255,0/255,1)
   endparam
   color param color5
     caption = "Color 5"
     default = rgba(252/255,71/255,0/255,1)
   endparam
   color param color6
     caption = "Color 6"
     default = rgba(252/255,164/255,3/255,1)
   endparam
   color param color7
     caption = "Color 7"
     default = rgba(252/255,252/255,4/255,1)
   endparam
   color param color8
     caption = "Color 8"
     default = rgba(252/255,252/255,252/255,1)
   endparam
 }
 


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

Constructor Detail

REB_Volcano

public REB_Volcano(Generic pparent)
constructor


REB_Volcano

public REB_Volcano()
Method Detail

Init

public void Init()
Overrides:
Init in class REB_DirectColorHelper