Notifications
Clear all

[Closed] Deforming point along its normal

Hello

How can one deform a point of mesh along its own normal in c++?
I’m obtaining normal using mesh->GetVertexNormal(i) call.

How to shift vertex in e.g. 1 unit along this normal?

1 Reply

It was kinda simple question, I know.

just
p += normal;
works fine