jlb
Class JLB_NullUtilityTransform
Object
common:Generic
common:Transform
common:UtilityTransform
jlb:JLB_NullUtilityTransform
class
- UtilityTransform:JLB_NullUtilityTransform
A do-nothing Transform
Ultra Fractal Source
Toggle UF Source Code Display
class JLB_NullUtilityTransform(common.ulb:UtilityTransform) {
; A do-nothing Transform
public:
func JLB_NULLUtilityTransform(Generic pparent)
UtilityTransform.UtilityTransform(pparent)
endfunc
; @param pz
; @return the same pz
complex func Iterate(complex pz)
return pz
endfunc
default:
title = "(No change)" ;"Null Utility Transform"
int param v_nullUtilitytransform
caption = "Version (NullUtilityTransform)"
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_nullUtilitytransform < 100
endparam
}
Methods inherited from class Object |
|
JLB_NullUtilityTransform
public JLB_NullUtilityTransform()
JLB_NULLUtilityTransform
public void JLB_NULLUtilityTransform(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