ck
Class InterpolateBase
Object
common:Generic
ck:InterpolateBase
- Direct Known Subclasses:
- Linear, SphericalLinear
class
- Generic:InterpolateBase
This is the base class for interpolation of Complex Numbers
Ultra Fractal Source
Toggle UF Source Code Display
class InterpolateBase(common.ulb:Generic) {
; This is the base class for interpolation of Complex Numbers
public:
import "Common.ulb"
func InterpolateBase(Generic pparent)
Generic.Generic(pparent)
endfunc
complex func Interpolate(float t,complex a,complex b)
return this.doInterpolate(t,a,b)
endfunc
protected:
complex func doInterpolate(float t,complex a,complex b)
; Template function doing the work...
; should be overriden from sub classes
return 0;
endfunc
}
Methods inherited from class Object |
|
InterpolateBase
public InterpolateBase(Generic pparent)
InterpolateBase
public InterpolateBase()
Interpolate
public complex Interpolate(float t,
complex a,
complex b)
doInterpolate
protected complex doInterpolate(float t,
complex a,
complex b)