

The rotation matrix for rotating around this vector by 45 degree is shown below (which I calculated using quaternion)
0.8536 0.146 0.500
0.1460 0.850 -0.500
-0.500 0.500 0.707
When we multiply a arbitrary vector (x,y,z) by this matrix we gets the vector function F as below
(X 0.8536 + y 0.146 + z 0.5) i + ( x 0.146 + y 0.85 – z 0.5 ) j + ( -x 0.5 + y 0.5 + y 0.707 ) k
I,j,k are the base vectors.
Taking curl of this vector function F, we get the axis of rotation.
I calculated the curl of that function and it is (1,-1, 0). After normalizing this vector we can see the result as (.707,-.707, 0),. Earlier we had created the rotation matrix to rotate around the axis ( .707,.707,0). Our answer curl is in the opposite direction of (.707,.707,0) , but it is still correct.
Only problem is with the direction of rotation that is clockwise or anti clock wise..
fExtent = satAxis[i].Dot( vtRadius );
fCenterBox = satAxis[i].Dot( GetPosition() );
fProjBox[0] = fCenterBox + fExtent;
fProjBox[1] = fCenterBox - fExtent;
FindMinMax( fProjBox, 2,fBoxMin,fBoxMax );
// projecting triangle coordinates
fProjTri[0] = satAxis[i].Dot( refTri.m_Pt1 );
fProjTri[1] = satAxis[i].Dot( refTri.m_Pt2 );
fProjTri[2] = satAxis[i].Dot( refTri.m_Pt3 );
FindMinMax( fProjTri, 3,fMin,fMax );
// check for overlapping on the SAT axis
if( (fMin < fBoxMin && fMax < fBoxMin ) || (fMin > fBoxMax && fMax > fBoxMax ) )
return Interfaces3D::InterSectionOut; // the triangle is outside.
fExtent = satAxis[i].Dot( vtRadius );fCenterBox = satAxis[i].Dot( GetPosition() );fProjBox[0] = fCenterBox + fExtent;
fProjBox[1] = fCenterBox - fExtent;FindMinMax( fProjBox, 2,fBoxMin,fBoxMax );
// projecting triangle coordinates