reb
Class ImageTrapModeFarthest
Object
common:Generic
reb:ImageTrapMode
reb:ImageTrapModeWithThreshold
reb:ImageTrapModeFarthest
class
- ImageTrapModeWithThreshold:ImageTrapModeFarthest
This trap mode uses the farthest trapped point that is within the threshold.
Ultra Fractal Source
Toggle UF Source Code Display
class ImageTrapModeFarthest(ImageTrapModeWithThreshold) {
; This trap mode uses the farthest trapped point that is within the threshold.
public:
import "common.ulb"
func ImageTrapModeFarthest(Generic pparent)
ImageTrapModeWithThreshold.IMageTrapModeWithThreshold(pparent)
endfunc
func Init(complex pz)
ImageTrapModeWithThreshold.Init(pz)
m_Solid = true
endfunc
func Iterate(complex pz, complex pzt, float pdistance, float ptexture, color pcolor)
ImageTrapModeWithThreshold.Iterate(pz, pzt, pdistance,ptexture,pcolor)
m_a = alpha(pcolor)
if (pdistance < m_Threshold && pdistance >= m_Distances[0] && m_a >= m_AThreshold)
m_Distances[0] = pdistance
m_UntransformedPoints[0] = pz
m_TransformedPoints[0] = pzt
m_IterationPoints[0] = m_Iterations
m_Textures[0] = ptexture
m_ImagePoints[0] = pcolor
m_Solid = false
edgefade(pdistance)
endif
endfunc
default:
title = "Farthest"
int param v_farthest
caption = "Version (Farthest)"
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_farthest < 100
endparam
}
Method Summary |
void |
Init(complex pz)
call this at the beginning of each sequence |
void |
Iterate(complex pz,
complex pzt,
float pdistance,
float ptexture,
color pcolor)
call this for each point |
Methods inherited from class Object |
|
ImageTrapModeFarthest
public ImageTrapModeFarthest(Generic pparent)
ImageTrapModeFarthest
public ImageTrapModeFarthest()
Init
public void Init(complex pz)
- Description copied from class:
ImageTrapMode
- call this at the beginning of each sequence
- Overrides:
Init
in class ImageTrapMode
Iterate
public void Iterate(complex pz,
complex pzt,
float pdistance,
float ptexture,
color pcolor)
- Description copied from class:
ImageTrapMode
- call this for each point
- Overrides:
Iterate
in class ImageTrapMode