reb
Class REB_TrapShapeBean
Object
common:Generic
common:TrapShape
reb:REB_TrapShapeBean
class
- TrapShape:REB_TrapShapeBean
This shape uses the bean function.
It has 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_TrapShapeBean(common.ulb:TrapShape) {
; This shape uses the bean function.<br>
; <p>
; It has 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_TrapShapeBean(Generic pparent)
TrapShape.TrapShape(pparent)
endfunc
; Call this for each iteration being trapped.
float func Iterate(complex pz)
float theta = 0
TrapShape.Iterate(pz)
float d = 0
complex af1 = 0
theta = atan2(pz)
int sgn = 1
if @sgn
sgn = -1
endif
af1 = @a*(@afn1(theta)^real(@pwr)+@afn2(theta)^imag(@pwr))
if @absval
d = abs(cabs(pz) - cabs(af1*cos(theta) + sgn*flip(af1*sin(theta))))
else
d = cabs(pz - (af1*cos(theta) + sgn*flip(af1*sin(theta))))
endif
m_LastZ = (af1*cos(theta) + sgn*flip(af1*sin(theta)))
return d
endfunc
default:
title = "Bean"
int param v_trapshapebean
caption = "Version (Trap Shape Bean)"
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_trapshapebean < 101
endparam
float param a
caption = "Polar parameter"
default = 0.2
hint = "Affects spread and scale of trap"
endparam
complex param pwr
caption = "Power"
default = (3,3)
hint = "Affects shape 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
}
Method Summary |
float |
Iterate(complex pz)
Call this for each iteration being trapped. |
Methods inherited from class Object |
|
REB_TrapShapeBean
public REB_TrapShapeBean(Generic pparent)
- Constructor
REB_TrapShapeBean
public REB_TrapShapeBean()
Iterate
public float Iterate(complex pz)
- Call this for each iteration being trapped.
- Overrides:
Iterate
in class TrapShape