Jump to content

Following surface tangent, pointing to a target, issue..!


Recommended Posts

Hi guys,

 

I need to create a vector attribute, where all the vectors are aligned along the tangent of the surface, while also pointing toward a specified target point.

I believe that combining the Tangent-field SOP with the Normal vector attribute should provide the solution, but I'm not sure how to properly blend them together!

vector target_pos =  point(0, "P", 66);

vector normal = normalize(@N);

vector tangent = v@field1;

vector dir_to_target = normalize(target_pos - @P);

v@FinalVect = ?

 

 

Thanks for helping.

Tangent Field.jpg

TangetntField_01.hip

Link to comment
Share on other sites

Or without a double intersect call:

vector A =  point(0, "P", 66);
vector B = normalize(A-v@P);
vector C = v@P + B * .1;// 0.1 to avoid overshooting
int prim;
vector primuv;
xyzdist(0, C, prim, primuv);
vector surfaceP;
prim_attribute(0, surfaceP, "P", prim, primuv);
v@field1 = normalize(surfaceP-v@P);

 

  • Like 3
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...