CSharpGL.glm.rotate C# (CSharp) Method

rotate() public static method

public static rotate ( float angleDegree ) : mat3
angleDegree float ANgle in Degree.
return mat3
        public static mat3 rotate(float angleDegree)
        {
            return rotate(mat3.identity(), angleDegree);
        }

Same methods

glm::rotate ( mat3 m, float angleDegree ) : mat3
glm::rotate ( float angleDegree, vec3 v ) : CSharpGL.mat4
glm::rotate ( CSharpGL.mat4 m, float angleDegree, vec3 v ) : CSharpGL.mat4