jlb
Class JLB_NullUtilityTransform

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:UtilityTransform
              extended by jlb:JLB_NullUtilityTransform

class 
UtilityTransform:JLB_NullUtilityTransform

A do-nothing Transform


Ultra Fractal Source

Toggle UF Source Code Display

 class JLB_NullUtilityTransform(common.ulb:UtilityTransform) {
    ; A do-nothing  Transform
 public:
 
   func JLB_NULLUtilityTransform(Generic pparent)
     UtilityTransform.UtilityTransform(pparent)
   endfunc
 
   ; @param pz
   ; @return the same pz
   complex func Iterate(complex pz)
     return pz
   endfunc
 
 default:
   title = "(No change)"             ;"Null Utility Transform"
   int param v_nullUtilitytransform
     caption = "Version (NullUtilityTransform)"
     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_nullUtilitytransform < 100
   endparam
 }
 


Constructor Summary
JLB_NullUtilityTransform()
           
 
Method Summary
 complex Iterate(complex pz)
          Transform a single point within a sequence
 void JLB_NULLUtilityTransform(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_NullUtilityTransform

public JLB_NullUtilityTransform()
Method Detail

JLB_NULLUtilityTransform

public void JLB_NULLUtilityTransform(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