blob: cadd5c00218f52957f28093ce84f193862bd32f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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;
}
}
|