Function to calculate the orthogonal projection of vector_in on a plane, which is defined by vector_u and vector_v. The inputs vector_u and vector_v can be perpendicular but cannot be parallel.
function orthogonalProjection input Real vector_in[3] "vector, whose orthogonal projection should be calculated"; input Real vector_u[3] "vector build a plane"; input Real vector_v[3] "vector build a plane"; output Real vector_out[3] "orthogonal projection"; end orthogonalProjection;