reb
Class REB_TrapShapeQuotient1

Object
  extended by common:Generic
      extended by common:TrapShape
          extended by reb:REB_TrapShapeQuotient1

class 
TrapShape:REB_TrapShapeQuotient1

This shape is a quotient of the real and imaginary components of z.
quotient = abs(real(z)/imag(z))


Ultra Fractal Source

Toggle UF Source Code Display

 class REB_TrapShapeQuotient1(common.ulb:TrapShape) {
  ; This shape is a quotient of the real and imaginary components of z. <br>
  ;   quotient =  abs(real(z)/imag(z))
  public:
    import "common.ulb"
 
 ; Constructor
    func REB_TrapShapeQuotient1(Generic pparent)
      TrapShape.TrapShape(pparent)
    endfunc
    
   ; Call this for each iteration being trapped.
    float func Iterate(complex pz)
     TrapShape.Iterate(pz)
      m_LastZ = pz- real(pz)/imag(pz)
      return 3*abs(real(pz)/imag(pz))
    endfunc
    
  default:
    title = "Quotient 1"
   int param v_trapshapequotient1
     caption = "Version (Trap Shape Quotient 1)"
     default = 101
     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_trapshapequotient1 < 101
   endparam
  }
 


Constructor Summary
REB_TrapShapeQuotient1()
           
REB_TrapShapeQuotient1(Generic pparent)
          Constructor
 
Method Summary
 float Iterate(complex pz)
          Call this for each iteration being trapped.
 
Methods inherited from class common:TrapShape
GetColorChannel, GetTextureValue, GetTransformedPoint, Init, IterateSilent, SetThreshold
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

REB_TrapShapeQuotient1

public REB_TrapShapeQuotient1(Generic pparent)
Constructor


REB_TrapShapeQuotient1

public REB_TrapShapeQuotient1()
Method Detail

Iterate

public float Iterate(complex pz)
Call this for each iteration being trapped.

Overrides:
Iterate in class TrapShape