File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ static float3 rcpsafe(float3 x, float epsilon = k_EpsilonRCP) =>
169169 math . select ( math . rcp ( x ) , float3 . zero , math . abs ( x ) < epsilon ) ;
170170
171171 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
172- static internal float3x3 svdInverse ( float3x3 a )
172+ internal static float3x3 svdInverse ( float3x3 a )
173173 {
174174 var e = singularValuesDecomposition ( a , out var u , out var v ) ;
175175 var um = math . float3x3 ( u ) ;
@@ -179,7 +179,7 @@ static internal float3x3 svdInverse(float3x3 a)
179179 }
180180
181181 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
182- static internal quaternion svdRotation ( float3x3 a )
182+ internal static quaternion svdRotation ( float3x3 a )
183183 {
184184 singularValuesDecomposition ( a , out var u , out var v ) ;
185185 return math . mul ( u , math . conjugate ( v ) ) ;
You can’t perform that action at this time.
0 commit comments