common
Class UtilityTransform

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:UtilityTransform
Direct Known Subclasses:
DMJ_ScreenRelative, Handles, JLB_NewtonUtilityTransform, JLB_NullUtilityTransform, JLB_SpiroGlyphicUtilityTransform, PixelCoordinate

class 
Transform:UtilityTransform

Utility Transform base class.

This class adds no new functionality to the Transform class. Its purpose is to provide a grouping for utility transforms that other classes may use internally to provide extra features.


Ultra Fractal Source

Toggle UF Source Code Display

 class UtilityTransform(Transform) {
   ; Utility Transform base class.
   ; <p>
   ; This class adds no new functionality to the Transform class.
   ; Its purpose is to provide a grouping for utility transforms
   ; that other classes may use internally to provide extra
   ; features.
   
 public:
   ; Constructor
   ;
   ; @param pparent a reference to the object creating the new object; typically, 'this'
   func UtilityTransform(Generic pparent)
     Transform.Transform(pparent)
   endfunc
   
 default:
   int param v_utilitytransform
     caption = "Version (UtilityTransform)"
     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_utilitytransform < 100
   endparam
 }
 


Constructor Summary
UtilityTransform()
           
UtilityTransform(Generic pparent)
          Constructor
 
Method Summary
 
Methods inherited from class common:Transform
Init, IsSolid, Iterate, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

UtilityTransform

public UtilityTransform(Generic pparent)
Constructor

Parameters:
pparent - a reference to the object creating the new object; typically, 'this'

UtilityTransform

public UtilityTransform()