reb
Class ImageTrapModeSum
Object
common:Generic
reb:ImageTrapMode
reb:ImageTrapModeWithThreshold
reb:ImageTrapModeSum
- Direct Known Subclasses:
- ImageTrapModeAverage
class
- ImageTrapModeWithThreshold:ImageTrapModeSum
This trap mode sums the trapped points that are within the threshold.
Ultra Fractal Source
Toggle UF Source Code Display
class ImageTrapModeSum(ImageTrapModeWithThreshold) {
; This trap mode sums the trapped points that are within the threshold.
public:
import "common.ulb"
; constructor
func ImageTrapModeSum(Generic pparent)
ImageTrapModeWithThreshold.IMageTrapModeWithThreshold(pparent)
endfunc
; Initialize the class
func Init(complex pz)
ImageTrapModeWithThreshold.Init(pz)
m_Solid = true
endfunc
; call for each iterated point
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 && m_a >= m_AThreshold)
m_Distances[0] = m_Distances[0] + pdistance
m_UntransformedPoints[0] = m_UntransformedPoints[0] + pz
m_TransformedPoints[0] = m_TransformedPoints[0] + pzt
m_IterationPoints[0] = m_IterationPoints[0] + 1
m_Textures[0] = m_Textures[0] + ptexture
m_ImagePoints[0] = pcolor
m_Solid = false
edgefade(pdistance)
endif
endfunc
default:
title = "Sum"
int param v_sum
caption = "Version (Sum)"
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_sum < 100
endparam
}
Methods inherited from class Object |
|
ImageTrapModeSum
public ImageTrapModeSum(Generic pparent)
- constructor
ImageTrapModeSum
public ImageTrapModeSum()
Init
public void Init(complex pz)
- Initialize the class
- Overrides:
Init
in class ImageTrapMode
Iterate
public void Iterate(complex pz,
complex pzt,
float pdistance,
float ptexture,
color pcolor)
- call for each iterated point
- Overrides:
Iterate
in class ImageTrapMode