common
Class DefaultGradient

Object
  extended by common:Generic
      extended by common:GradientWrapper
          extended by common:DefaultGradient

class 
GradientWrapper:DefaultGradient

This is a default gradient. You can use it anywhere a GradientWrapper is required when you just want the default gradient to be used.


Ultra Fractal Source

Toggle UF Source Code Display

 class DefaultGradient(GradientWrapper) {
   ; This is a default gradient. You can use it anywhere a GradientWrapper
   ; is required when you just want the default gradient to be used.
   
 public:
   func DefaultGradient(Generic pparent)
     GradientWrapper.GradientWrapper(pparent)
   endfunc
   
 default:
   title = "Default Gradient"
 
   int param v_defaultgradient
     caption = "Version (DefaultGradient)"
     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_defaultgradient < 100
   endparam
 }
 


Constructor Summary
DefaultGradient()
           
DefaultGradient(Generic pparent)
           
 
Method Summary
 
Methods inherited from class common:GradientWrapper
getColor, getColorChannel
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

DefaultGradient

public DefaultGradient(Generic pparent)

DefaultGradient

public DefaultGradient()