common
Class NullClipShape

Object
  extended by common:Generic
      extended by common:Transform
          extended by common:ClipShape
              extended by common:NullClipShape

class 
ClipShape:NullClipShape

This is a null clip shape. You can use it anywhere a clip shape is required when you don't want to actually clip anything.


Ultra Fractal Source

Toggle UF Source Code Display

 class NullClipShape(ClipShape) {
   ; This is a null clip shape. You can use it anywhere a clip shape
   ; is required when you don't want to actually clip anything.
   
 public:
   func NullClipShape(Generic pparent)
     ClipShape.ClipShape(pparent)
   endfunc
   
 default:
   title = "Null Clip Shape"
 
   int param v_nullclipshape
     caption = "Version (NullClipShape)"
     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_nullclipshape < 100
   endparam
 }
 


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

Constructor Detail

NullClipShape

public NullClipShape(Generic pparent)

NullClipShape

public NullClipShape()