mmf
Class MMF_GammaTransform
Object
common:Generic
common:Transform
common:UserTransform
mmf:MMF_GammaTransform
class
- UserTransform:MMF_GammaTransform
Complex Gamma(z)
Ultra Fractal Source
Toggle UF Source Code Display
class MMF_GammaTransform(common.ulb:UserTransform) {
; Complex Gamma(z)<br>
public:
import "common.ulb"
; @param pparent the parent, generally "this" for the parent, or zero
func MMF_GammaTransform(Generic pparent)
UserTransform.UserTransform(pparent)
endfunc
complex func Iterate(complex pz)
; m_Iterations = m_Iterations + 1 not used in this transform
return Math.ComplexGamma(pz)
endfunc
default:
title = "Gamma Transform"
}
Methods inherited from class Object |
|
MMF_GammaTransform
public MMF_GammaTransform(Generic pparent)
- Parameters:
pparent
- the parent, generally "this" for the parent, or zero
MMF_GammaTransform
public MMF_GammaTransform()
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
- the complex value to be transformed
- Returns:
- the transformed value