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.
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
}