Get target point from Viewpoint3D
Get target point from Viewpoint3D
(OP)
How can I get the target point as array from Viewpoint3D? does Catia automation already have a method for this? I don't find it :(
Having GetOrigin, GetSightDirection , FocusDistance I should be able to get the target point but I forgot all my algebra from a long time ago :) Any mathematician around? :)
Viewpoint3D
Having GetOrigin, GetSightDirection , FocusDistance I should be able to get the target point but I forgot all my algebra from a long time ago :) Any mathematician around? :)
Viewpoint3D





RE: Get target point from Viewpoint3D
RE: Get target point from Viewpoint3D
xTarget = xOrigin + dFocusDistance*xSightDirection
yTarget = yOrigin + dFocusDistance*ySightDirection
zTarget = zOrigin + dFocusDistance*zSightDirection
Is it like this?