common
Class UserTransform

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:UserTransform
Direct Known Subclasses:
AppolonianGasket, DMJ_Clipping, DMJ_Distort, DMJ_FastMosaic, DMJ_FollowCurve, DMJ_Inversion, DMJ_Kaleidoscope, DMJ_LinearWave, DMJ_LogSpiral, DMJ_LowRes, DMJ_PolarToRectangular, DMJ_RectangularToPolar, DMJ_TransformRepeat, DMJ_TrapTiling, Image, JLB_BasicUserTransform, JLB_MoebiusUserTransform, JLB_NewtonUserTransform, JLB_NullUserTransform, JLB_SpiroGlyphicUserTransform, Location, MMF_Constant, MMF_FormulaTransform, MMF_GammaTransform, MMF_GeneralTransform, MMF_Linear, MMF_PowerFunctions, MMF_RunningProduct, MMF_RunningSum, MMF_Scale, MMF_SelfRotation, MMF_SimpleMatrixTransform, MMF_TransformAdd, MMF_TransformDivide, MMF_TransformMultiply, MMF_TransformPowerFunctions, MMF_TransformProduct, MMF_TransformSubtract, MMF_TransformSum, MMF_TrapTransformZold, MMF_UserFormulaTransform, Monnier_HyperbolicTiling, MT_BarnsleyTransform, MT_CrazySpiral, MT_GnarlTransform, MT_GnarlyTransform, MT_GravitationalLens, MT_PopcornTransform, MT_RadialWaves, MT_Scale, MT_TextureTransform, MT_TrapShapeTransform, MT_WheelTransform, NullTransform, REB_attract_formula_tx, REB_HyperbolicMapping, REB_Hyperparaboloid, REB_IFSApollo, REB_Inversions, REB_Mobius, Seven_Klein_Group, Standard_3DMapping, Standard_Aspect, Standard_GlassHemisphere, Standard_Inverse, Standard_Kaleidoscope, Standard_Lake, Standard_Mirror, Standard_Randomize, Standard_Ripples, Standard_Twist, TobysMorph, TransformMerge, TrapTransform, TrapTransformMod

class 
Transform:UserTransform

User-selectable Transform base class.

This class adds no new functionality to the Transform class. Its purpose is to provide a grouping for user-selectable Transform objects that actually transform complex points.


Ultra Fractal Source

Toggle UF Source Code Display

 class UserTransform(Transform) {
   ; User-selectable Transform base class.
   ; <p>
   ; This class adds no new functionality to the Transform class.
   ; Its purpose is to provide a grouping for user-selectable
   ; Transform objects that actually transform complex points.
   
 public:
   ; Constructor
   ;
   ; @param pparent a reference to the object creating the new object; typically, 'this'
   func UserTransform(Generic pparent)
     Transform.Transform(pparent)
   endfunc
   
 default:
   int param v_usertransform
     caption = "Version (UserTransform)"
     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_usertransform < 100
   endparam
 }
 


Constructor Summary
UserTransform()
           
UserTransform(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

UserTransform

public UserTransform(Generic pparent)
Constructor

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

UserTransform

public UserTransform()