jlb
Class JLB_NullUserTransform
Object
common:Generic
common:Transform
common:UserTransform
jlb:JLB_NullUserTransform
class
- UserTransform:JLB_NullUserTransform
A do-nothing Transform
Ultra Fractal Source
Toggle UF Source Code Display
class JLB_NullUserTransform(common.ulb:UserTransform) {
; A do-nothing Transform
public:
func JLB_NULLUserTransform(Generic pparent)
UserTransform.UserTransform(pparent)
endfunc
; @param pz
; @return the same pz
complex func Iterate(complex pz)
return pz
endfunc
default:
title = "(No change)" ;"Null User Transform"
int param v_nullUsertransform
caption = "Version (NullUserTransform)"
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_nullUsertransform < 100
endparam
}
Methods inherited from class Object |
|
JLB_NullUserTransform
public JLB_NullUserTransform()
JLB_NULLUserTransform
public void JLB_NULLUserTransform(Generic pparent)
Iterate
public complex Iterate(complex pz)
- Description copied from class:
Transform
- Transform a single point within a sequence
After a sequence has been set up with Init(), this function
will be called once for each value in the sequence. Note
that all values in the sequence must be processed in order
(they cannot be processed out of order). If the sequence
contains only one value, Init() will still be called and
then Iterate() will be called just once.
- Overrides:
Iterate
in class Transform
- Parameters:
pz
-
- Returns:
- the same pz