SharpMath.Ray.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Ray
return Ray
        public static Ray operator *( Ray _Op0, float3x3 _Op1 )
        {
            return new Ray( _Op0.m_Pos * _Op1, _Op0.m_Aim * _Op1, _Op0.m_Length, _Op0.m_MarchedLength );
        }