my python plugins(draw some point in spline) work in R21 and R22 have different result in viewport
in Right/Top/Front view use code
bd.SetMatrix_Camera()
offset = c4d.Vector(0.0,0.0,-100000.0)
new_point = bd.WC(test_pointone) + offset
s = bd.WC(test_pointone) + offset
e = bd.WCtest_pointtwo) + offset
so i change code for R22
bd.SetMatrix_Camera()
offset = c4d.Vector(0.0,0.0,-100000.0)
in_v = c4d.Vector(1.0,-1.0,1.0)
new_point = (bd.WC(test_pointone) + offset) ^ in_v
s = (bd.WC(test_pointone) + offset) ^ in_v
e = (bd.WCtest_pointtwo) + offset) ^ in_v
R22 Change Something?
Thanks for any help!