// Coordinate Record // by Pontus Lidman // based on GLUT 3.7 glutstroke.h // this file Copyright 2000 MathCore AB // // This file/package is licensed under the terms of the LPGL // with the permission of Pontus Lidman / Mathcore ! // package gl4java.utils.glut.fonts; public class CoordRec { public float x; public float y; public CoordRec(float x, float y) { this.x=x; this.y=y; } }