dmj5
Class DMJ_TrapColoringReal

Object
  extended by common:Generic
      extended by common:TrapColoring
          extended by dmj5:DMJ_TrapColoringReal

class 
TrapColoring:DMJ_TrapColoringReal



Ultra Fractal Source

Toggle UF Source Code Display

 class DMJ_TrapColoringReal(common.ulb:TrapColoring) {
 public:
   import "common.ulb"
 
   func DMJ_TrapColoringReal(Generic pparent)
     TrapColoring.TrapColoring(pparent)
   endfunc
   
   float func Result(TrapMode ptrapmode)
     if (@p_untransformed)
       return abs(real(ptrapmode.GetUntransformedPoint(0))) + ptrapmode.GetTexture(0)
     else
       return abs(real(ptrapmode.GetTransformedPoint(0))) + ptrapmode.GetTexture(0)
     endif
   endfunc
 
 default:
   title = "Real"
 
   int param v_dmj_trapcoloringreal
     caption = "Version (DMJ_TrapColoringReal)"
     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_trapcoloringreal < 100
   endparam
 
   bool param p_untransformed
     caption = "Use value before transformation"
     default = false
     hint = "If checked, coloring will be based on the value prior to any trap position transformations."
   endparam
 }
 


Constructor Summary
DMJ_TrapColoringReal()
           
DMJ_TrapColoringReal(Generic pparent)
           
 
Method Summary
 float Result(TrapMode ptrapmode)
          get a final result
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

DMJ_TrapColoringReal

public DMJ_TrapColoringReal(Generic pparent)

DMJ_TrapColoringReal

public DMJ_TrapColoringReal()
Method Detail

Result

public float Result(TrapMode ptrapmode)
Description copied from class: TrapColoring
get a final result

Overrides:
Result in class TrapColoring