Skip to content

Commit

Permalink
Propagate updates from internal branch (7d0650)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonCernWq committed Jan 15, 2024
1 parent 404deb7 commit beddfd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/gdt/gdt/math/mat/LinearSpace.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ namespace gdt {
{
const T dx0 = cross(T(one,zero,zero),N);
const T dx1 = cross(T(zero,one,zero),N);
const T dx = normalize(select(dot(dx0,dx0) > dot(dx1,dx1),dx0,dx1));
const T dx = normalize(::select(dot(dx0,dx0) > dot(dx1,dx1),dx0,dx1));
const T dy = normalize(cross(N,dx));
return LinearSpace3<T>(dx,dy,N);
}
Expand Down

0 comments on commit beddfd0

Please sign in to comment.