dmj5
Class DMJ_TrapShapePoint
Object
common:Generic
common:TrapShape
dmj5:DMJ_TrapShapePoint
class
- TrapShape:DMJ_TrapShapePoint
Simple point trap shape. (This is a clone of the common.ulb shape, included here for convenience.)
Ultra Fractal Source
Toggle UF Source Code Display
class DMJ_TrapShapePoint(common.ulb:TrapShape) {
; Simple point trap shape. (This is a clone of the common.ulb shape, included here for convenience.)
public:
import "common.ulb"
func DMJ_TrapShapePoint(Generic pparent)
TrapShape.TrapShape(pparent)
endfunc
float func Iterate(complex pz)
TrapShape.Iterate(pz)
return cabs(pz)
endfunc
default:
title = "Point"
int param v_dmj_trapshapepoint
caption = "Version (DMJ_TrapShapePoint)"
default = 100
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_dmj_trapshapepoint < 100
endparam
}
Method Summary |
float |
Iterate(complex pz)
call this for each iteration being trapped |
Methods inherited from class Object |
|
DMJ_TrapShapePoint
public DMJ_TrapShapePoint(Generic pparent)
DMJ_TrapShapePoint
public DMJ_TrapShapePoint()
Iterate
public float Iterate(complex pz)
- Description copied from class:
TrapShape
- call this for each iteration being trapped
- Overrides:
Iterate
in class TrapShape