Universe.Physics.ConvexDecompositionDotNet.float4x4.MatrixTranslation C# (CSharp) 메소드

MatrixTranslation() 공개 정적인 메소드

public static MatrixTranslation ( float3 t ) : float4x4
t float3
리턴 float4x4
        public static float4x4 MatrixTranslation(float3 t)
        {
            return new float4x4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, t.x, t.y, t.z, 1);
        }
        public static float4x4 MatrixRotationZ(float angle_radians)