common
Class NullColorTransfer

Object
  extended by common:Generic
      extended by common:ColorTransfer
          extended by common:NullColorTransfer

class 
ColorTransfer:NullColorTransfer

This is a null color transfer. You can use it anywhere a color transfer is required when you don't want to actually do a color transfer.


Ultra Fractal Source

Toggle UF Source Code Display

 class NullColorTransfer(ColorTransfer) {
   ; This is a null color transfer. You can use it anywhere a color transfer
   ; is required when you don't want to actually do a color transfer.
   
 public:
   func NullColorTransfer(Generic pparent)
     ColorTransfer.ColorTransfer(pparent)
   endfunc
   
 default:
   title = "Null Color Transfer"
 
   int param v_nullcolortransfer
     caption = "Version (NullColorTransfer)"
     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_nullcolortransfer < 100
   endparam
 }
 


Constructor Summary
NullColorTransfer()
           
NullColorTransfer(Generic pparent)
           
 
Method Summary
 
Methods inherited from class common:ColorTransfer
Init, Iterate, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

NullColorTransfer

public NullColorTransfer(Generic pparent)

NullColorTransfer

public NullColorTransfer()