jlb
Class JLB_NullUserTransform

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:UserTransform
              extended by jlb:JLB_NullUserTransform

class 
UserTransform:JLB_NullUserTransform

A do-nothing Transform


Ultra Fractal Source

Toggle UF Source Code Display

 class JLB_NullUserTransform(common.ulb:UserTransform) {
    ; A do-nothing  Transform
 public:
 
   func JLB_NULLUserTransform(Generic pparent)
     UserTransform.UserTransform(pparent)
   endfunc
 
   ; @param pz
   ; @return the same pz
   complex func Iterate(complex pz)
     return pz
   endfunc
 
 default:
   title = "(No change)"             ;"Null User Transform"
   int param v_nullUsertransform
     caption = "Version (NullUserTransform)"
     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_nullUsertransform < 100
   endparam
 }
 


Constructor Summary
JLB_NullUserTransform()
           
 
Method Summary
 complex Iterate(complex pz)
          Transform a single point within a sequence
 void JLB_NULLUserTransform(Generic pparent)
           
 
Methods inherited from class common:Transform
Init, IsSolid, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

JLB_NullUserTransform

public JLB_NullUserTransform()
Method Detail

JLB_NULLUserTransform

public void JLB_NULLUserTransform(Generic pparent)

Iterate

public complex Iterate(complex pz)
Description copied from class: Transform
Transform a single point within a sequence

After a sequence has been set up with Init(), this function will be called once for each value in the sequence. Note that all values in the sequence must be processed in order (they cannot be processed out of order). If the sequence contains only one value, Init() will still be called and then Iterate() will be called just once.

Overrides:
Iterate in class Transform
Parameters:
pz -
Returns:
the same pz