reb
Class REB_Flowers3

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

class 
REB_DirectColorHelper:REB_Flowers3

Provides colors to use with some Direct Coloring classes


Ultra Fractal Source

Toggle UF Source Code Display

 class REB_Flowers3(REB_DirectColorHelper) {
 ; Provides colors to use with some Direct Coloring classes <br>
 public:
   import "common.ulb"
 
   ; constructor
   func REB_Flowers3(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 = "Flowers3 Array"
   int param v_Flowers3
     caption = "Version (Flowers3 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_Flowers3 < 100
   endparam  
   color param color1
     caption = "Color 1"
     default = rgba(164/255,36/255,68/255,1)
   endparam
   color param color2
     caption = "Color 2"
     default = rgba(252/255,220/255,80/255,1)
   endparam
   color param color3
     caption = "Color 3"
     default = rgba(108/255,20/255,32/255,1)
   endparam
   color param color4
     caption = "Color 4"
     default = rgba(120/255,184/255,152/255,1)
   endparam
   color param color5
     caption = "Color 5"
     default = rgba(80/255,130/255,74/255,1)
   endparam
   color param color6
     caption = "Color 6"
     default = rgba(120/255,12/255,0/255,1)
   endparam
   color param color7
     caption = "Color 7"
     default = rgba(240/255,160/255,200/255,1)
   endparam
   color param color8
     caption = "Color 8"
     default = rgba(243/255,41/255,133/255,1)
   endparam
 }
 


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

Constructor Detail

REB_Flowers3

public REB_Flowers3(Generic pparent)
constructor


REB_Flowers3

public REB_Flowers3()
Method Detail

Init

public void Init()
Overrides:
Init in class REB_DirectColorHelper