https://github.com/lwt831/Real-time-Locally-Injective-Volumetric-Deformation
Raw File
Tip revision: 8da858a9a496faf7eb26f1854e8db3c57776c0e0 authored by lwt831 on 30 April 2021, 08:00:14 UTC
Update Readme
Tip revision: 8da858a
updateNormal.m
if size(viewY,1) ~= size(viewX,1)
    normY = vertexNormal(triangulation(t,viewY));
    viewY(end+1:end+numSeamVertex,:) = viewY(seamVertexIndex,:);
    normY(end+1:end+numSeamVertex,:) = normY(seamVertexIndex,:);
end
back to top