dmj5
Class DMJ_TrapShapeFlat

Object
  extended by common:Generic
      extended by common:TrapShape
          extended by dmj5:DMJ_TrapShapeFlat

class 
TrapShape:DMJ_TrapShapeFlat

This "flat" trap shape is used to get a flat texture and is not really a trap shape at all.


Ultra Fractal Source

Toggle UF Source Code Display

 class DMJ_TrapShapeFlat(common.ulb:TrapShape) {
   ; This "flat" trap shape is used to get a flat texture and is not really a trap shape at all.
 
 public:
   import "common.ulb"
 
   func DMJ_TrapShapeFlat(Generic pparent)
     TrapShape.TrapShape(pparent)
   endfunc
   
   float func Iterate(complex pz)
     TrapShape.Iterate(pz)
 
     return 0
   endfunc
   
 default:
   title = "Flat Texture"
 
   int param v_dmj_trapshapeflat
     caption = "Version (DMJ_TrapShapeFlat)"
     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_dmj_trapshapeflat < 100
   endparam
 }
 


Constructor Summary
DMJ_TrapShapeFlat()
           
DMJ_TrapShapeFlat(Generic pparent)
           
 
Method Summary
 float Iterate(complex pz)
          call this for each iteration being trapped
 
Methods inherited from class common:TrapShape
GetColorChannel, GetTextureValue, GetTransformedPoint, Init, IterateSilent, SetThreshold
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

DMJ_TrapShapeFlat

public DMJ_TrapShapeFlat(Generic pparent)

DMJ_TrapShapeFlat

public DMJ_TrapShapeFlat()
Method Detail

Iterate

public float Iterate(complex pz)
Description copied from class: TrapShape
call this for each iteration being trapped

Overrides:
Iterate in class TrapShape