2 Performs a hit test on an object in the active viewport.
9 obj.ParameterBlock.Radius.Value = 50.0
12 hittype = MaxPlus.Constants.HittypeSolid
13 hitflags = MaxPlus.Constants.HitAnysolid
15 hit = obj.HitTest(node, hittype, 1, hitflags, pt, vp)
16 print 'hit succes', hit,
'for point', pt
18 hit = obj.HitTest(node, hittype, 1, hitflags, pt, vp)
19 print 'hit success', hit,
'for point', pt
21 if __name__ ==
"__main__":