mmf
Class MMF_NoDeadDLA

Object
  extended by common:Generic
      extended by mmf:MMF_DeadDLA
          extended by mmf:MMF_NoDeadDLA

class 
MMF_DeadDLA:MMF_NoDeadDLA



Ultra Fractal Source

Toggle UF Source Code Display

 class MMF_NoDeadDLA(MMF_DeadDLA) {
 public:
   import "common.ulb"
   ; @param pparent the parent, generally "this" from "DLA Inspired"
   func MMF_NoDeadDLA(Generic pparent)
     m_Parent = pparent
   endfunc
   ; @param x the x pixel position of a stimulus
   ; @param y the y pixel position of a stimulus
   ; @return the square of the pixel distance
   float func DeadDistance(float x,float y)
     return 1e200
   endfunc
 default:
   title = "No Dead Point DLA Seeding"
   color param colour
     default = RGB(0,0,0)
     visible = false
   endparam
   float param index
     default = 399.0
     visible = false
   endparam
 }
 


Constructor Summary
MMF_NoDeadDLA()
           
MMF_NoDeadDLA(Generic pparent)
           
 
Method Summary
 float DeadDistance(float x, float y)
           
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

MMF_NoDeadDLA

public MMF_NoDeadDLA(Generic pparent)
Parameters:
pparent - the parent, generally "this" from "DLA Inspired"

MMF_NoDeadDLA

public MMF_NoDeadDLA()
Method Detail

DeadDistance

public float DeadDistance(float x,
                          float y)
Overrides:
DeadDistance in class MMF_DeadDLA
Parameters:
x - the x pixel position of a stimulus
y - the y pixel position of a stimulus
Returns:
the square of the pixel distance