reb
Class REB_TrapShapeCurtateCycloid

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

class 
TrapShape:REB_TrapShapeCurtateCycloid

This shape uses the curtate cycloid 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_TrapShapeCurtateCycloid(common.ulb:TrapShape) {
  ; This shape uses the curtate cycloid 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_TrapShapeCurtateCycloid(Generic pparent)
      TrapShape.TrapShape(pparent)
    endfunc
    
   ; Call this for each iteration being trapped.
    float func Iterate(complex pz)
     TrapShape.Iterate(pz)   
     int sgn = 1
     if @sgn
       sgn = -1
     endif
      float theta = 0
      float d =  0
      complex af1 = 0
      complex af2 = 0
      complex as = 0
      theta = atan2(pz)
      af1 = @a*theta - 0.1*@b*@afn2(theta)
      af2 = @a - 0.1*@b*@afn1(theta)
      as = (af1 + sgn*flip(af2))
      if @absval
        d = abs(cabs(pz) - cabs(as))
      else
        d = cabs(pz - (as))
      endif
      m_LastZ = as
      return d
    endfunc
    
  default:
    title = "Curtate Cycloid"
   int param v_trapshapecurtatecycloid
     caption = "Version (Trap Shape Curtate Cycloid)"
     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_trapshapecurtatecycloid < 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
    func afn1
      caption = "Function #1"
      default = cos()
    endfunc
    func afn2
      caption = "Function #2"
      default = sin()
    endfunc
    bool param sgn
      caption = "Conjugate transform"
      default = false
    endparam
    param absval
      caption = "Absolute Value"
      default = false
    endparam
  }
 


Constructor Summary
REB_TrapShapeCurtateCycloid()
           
REB_TrapShapeCurtateCycloid(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_TrapShapeCurtateCycloid

public REB_TrapShapeCurtateCycloid(Generic pparent)
Constructor


REB_TrapShapeCurtateCycloid

public REB_TrapShapeCurtateCycloid()
Method Detail

Iterate

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

Overrides:
Iterate in class TrapShape