common
Class NullTransform

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:UserTransform
              extended by common:NullTransform

class 
UserTransform:NullTransform

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


Ultra Fractal Source

Toggle UF Source Code Display

 class NullTransform(UserTransform) {
   ; This is a null transform. You can use it anywhere a transform
   ; is required when you don't want to actually do a transform.
   
 public:
   func NullTransform(Generic pparent)
     UserTransform.UserTransform(pparent)
   endfunc
   
 default:
   title = "Null Transform"
 
   int param v_nulltransform
     caption = "Version (NullTransform)"
     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_nulltransform < 100
   endparam
 }
 


Constructor Summary
NullTransform()
           
NullTransform(Generic pparent)
           
 
Method Summary
 
Methods inherited from class common:Transform
Init, IsSolid, Iterate, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

NullTransform

public NullTransform(Generic pparent)

NullTransform

public NullTransform()