reb
Class REB_TrapShapeParabola

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

class 
TrapShape:REB_TrapShapeParabola

This shape uses the parabola function.

This variant of the function has a signed and absolute value version of the distance. The function also has a complex conjugate variant. The transformed value is the complex return value of the function.


Ultra Fractal Source

Toggle UF Source Code Display

 class REB_TrapShapeParabola(common.ulb:TrapShape) {
  ; This shape uses the parabola function.<br>
  ; <p>
  ; This variant of the function has a signed and absolute value
  ; version of the distance. The function also has a complex conjugate variant.
  ; The transformed value is the complex return value of the function.
  public:
    import "common.ulb"
 
 ; Constructor
    func REB_TrapShapeParabola(Generic pparent)
      TrapShape.TrapShape(pparent)
    endfunc
    
   ; Call this for each iteration being trapped.
    float func Iterate(complex pz)
     TrapShape.Iterate(pz)
      float d =  0
      int sgn = 1
     if @sgn
       sgn = -1
     endif
     float cy = imag(pz)
     float cx = 10*@b*cy^2
      m_LastZ = 0.65*@a*(cx + sgn*flip(cy))
      if @absval
        d = abs(cabs(pz) - cabs(0.65*@a*(cx + sgn*flip(cy))))
      else
        d = cabs(pz - 0.65*@a*(cx + sgn*flip(cy)))
      endif
      return d
    endfunc
    
  default:
    title = "Parabola"
   int param v_trapshapeparabola
     caption = "Version (Trap Shape Parabola)"
     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_trapshapeparabola < 101
   endparam
    
    float param a
      caption = "Polar Parameter"
      default = 0.2
      hint = "Affects spread and scale of trap"
    endparam
    float param b
      caption = "2nd Polar Parameter"
      default = 1.0
      hint = "Affects spread and scale of trap"
    endparam
    bool param sgn
      caption = "Conjugate transform"
      default = false
    endparam
    param absval
      caption = "Absolute Value"
      default = false
    endparam
  }
 


Constructor Summary
REB_TrapShapeParabola()
           
REB_TrapShapeParabola(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_TrapShapeParabola

public REB_TrapShapeParabola(Generic pparent)
Constructor


REB_TrapShapeParabola

public REB_TrapShapeParabola()
Method Detail

Iterate

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

Overrides:
Iterate in class TrapShape