Miscellaneous helper functions.
Get the inheritance tree of the passed MaxScript value as an array.
i.e., passing in an instances of a sphere gives:
#(Value, MAXWrapper, node, GeometryClass, Sphere)
An array, where array[1] is the top most class the passed value inherits from, and array[array.count] is the class of passed value.
<val>
Print the inheritance tree of the passed MaxScript value.
i.e., passing in an instances of a sphere prints:
__Value |__MAXWrapper |__node |__GeometryClass |__Sphere
OK