OpenTK - After multiplying with ProjectionMatrix nothing is rendering anymore
问题 From a tutorial that refused to explain it I got the following code. It was a lwjgl tutorial I copied where it worked perfectly fine. I'm not sure if the problem is created by having OpenGl differ from the java openGl, but since it's only math I would be surprised by that: private void createProjectionMatrix(int width, int height) { float aspectRatio = width / height; float yScale = (float)((1f / Math.Tan(Maths.degreeToRadian(FOV/2f))) * aspectRatio); float xScale = yScale / aspectRatio;