Hello I'm currently using the
Vector3 translation = new Vector3( tx, ty, tz);
GL.Translate(translation);
Way of translating an object in OpenTK where the Vector3 values are from -1 to 1
How do I change this and make the values of a movable object to go pixel wise that way I can set up a scene based on the user's screen size.
Thanks!