jlb
Class JLB_NullDualTransform

Object
  extended by common:Generic
      extended by jlb:DualTransform
          extended by jlb:JLB_NullDualTransform

class 
DualTransform:JLB_NullDualTransform

A DualTransform placeholder that does nothing.


Ultra Fractal Source

Toggle UF Source Code Display

 class JLB_NullDualTransform(DualTransform) {
 ; A DualTransform placeholder that does nothing.
 
 public:
   import "common.ulb"
 
   ; @param pz
   ; @param pc
   ; @return true if okay; possibly change both arguments
   bool func Iterate(complex &pz, complex &pc)
     return true
   endfunc
 
 default:
   title = "Null DualTransform"
   int param v_NullDualTransform
     caption = "Version (NullDualTransform)"
     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_NullDualTransform < 100
   endparam
 }
 


Constructor Summary
JLB_NullDualTransform()
           
 
Method Summary
 boolean Iterate(complex pz, complex pc)
           
 
Methods inherited from class jlb:DualTransform
Init
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

JLB_NullDualTransform

public JLB_NullDualTransform()
Method Detail

Iterate

public boolean Iterate(complex pz,
                       complex pc)
Overrides:
Iterate in class DualTransform
Parameters:
pz -
pc -
Returns:
true if okay; possibly change both arguments