reb
Class ColorTrapNoColor

Object
  extended by common:Generic
      extended by common:ColorTrap
          extended by reb:ColorTrapNoColor

class 
ColorTrap:ColorTrapNoColor

Placeholder for Colors


Ultra Fractal Source

Toggle UF Source Code Display

 class ColorTrapNoColor(common.ulb:ColorTrap) {
 ; Placeholder for  Colors
 public:
   import "common.ulb"
 
   func ColorTrapNoColor(Generic pparent)
     ColorTrap.ColorTrap(pparent)
   endfunc
   
   color func Iterate(complex pz)
     ColorTrap.Iterate(pz)
     return rgba(0,0,0,0)
   endfunc
   
 default:
   title = "No Color"
   int param v_colornocolor
     caption = "Version (No Color)"
     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_colornocolor < 100
   endparam
 }
 


Constructor Summary
ColorTrapNoColor()
           
ColorTrapNoColor(Generic pparent)
           
 
Method Summary
 color Iterate(complex pz)
          call this to produce a result you should always override this function
 
Methods inherited from class common:ColorTrap
Init, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

ColorTrapNoColor

public ColorTrapNoColor(Generic pparent)

ColorTrapNoColor

public ColorTrapNoColor()
Method Detail

Iterate

public color Iterate(complex pz)
Description copied from class: ColorTrap
call this to produce a result you should always override this function

Overrides:
Iterate in class ColorTrap