jlb
Class JLB_NullCContraction

Object
  extended by common:Generic
      extended by mmf:Contraction
          extended by jlb:JLB_NullCContraction

class 
Contraction:JLB_NullCContraction

A do-nothing C Contraction.


Ultra Fractal Source

Toggle UF Source Code Display

 class JLB_NullCContraction(mmf.ulb:Contraction) {
 ; A do-nothing C Contraction.
 public:
 
   ; @param pz
   ; @param pc
   ; @return the same pc
   complex func Iterate(complex pz, complex pc)
     return pc
   endfunc
 
 default:
   title = "(Same c)"             ;"Null Contraction"
    int param v_nullccontraction
      caption = "Version (JLB_NullCContraction)"
      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_nullccontraction < 100
    endparam
 }
 


Constructor Summary
JLB_NullCContraction()
           
 
Method Summary
 complex Iterate(complex pz, complex pc)
           
 
Methods inherited from class mmf:Contraction
Init
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

JLB_NullCContraction

public JLB_NullCContraction()
Method Detail

Iterate

public complex Iterate(complex pz,
                       complex pc)
Overrides:
Iterate in class Contraction
Parameters:
pz -
pc -
Returns:
the same pc