reb
Class REB_TrapShapeQuotient2
Object
common:Generic
common:TrapShape
reb:REB_TrapShapeQuotient2
class
- TrapShape:REB_TrapShapeQuotient2
This shape is a quotient of the real and imaginary components of z.
quotient = abs(imag(z)/real(z))
Ultra Fractal Source
Toggle UF Source Code Display
class REB_TrapShapeQuotient2(common.ulb:TrapShape) {
; This shape is a quotient of the real and imaginary components of z. <br>
; quotient = abs(imag(z)/real(z))
public:
import "common.ulb"
; Constructor
func REB_TrapShapeQuotient2(Generic pparent)
TrapShape.TrapShape(pparent)
endfunc
; Call this for each iteration being trapped.
float func Iterate(complex pz)
TrapShape.Iterate(pz)
m_LastZ = pz- imag(pz)/real(pz)
return 3*abs(imag(pz)/real(pz))
endfunc
default:
title = "Quotient 2"
int param v_trapshapequotient2
caption = "Version (Trap Shape Quotient 2)"
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_trapshapequotient2 < 101
endparam
}
Method Summary |
float |
Iterate(complex pz)
Call this for each iteration being trapped. |
Methods inherited from class Object |
|
REB_TrapShapeQuotient2
public REB_TrapShapeQuotient2(Generic pparent)
- Constructor
REB_TrapShapeQuotient2
public REB_TrapShapeQuotient2()
Iterate
public float Iterate(complex pz)
- Call this for each iteration being trapped.
- Overrides:
Iterate
in class TrapShape