mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-15 05:00:36 +01:00
29 lines
351 B
Java
29 lines
351 B
Java
|
|
/**
|
||
|
|
* (C) 2002 Shaven Puppy Ltd
|
||
|
|
*
|
||
|
|
* Vector4f.java Created on Aug 1, 2002 by foo
|
||
|
|
*/
|
||
|
|
package org.lwjgl.vector;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* (C) 2002 JGL.org
|
||
|
|
*
|
||
|
|
* Vector4f.java Created on Aug 1, 2002 by foo
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author foo
|
||
|
|
*/
|
||
|
|
public class Vector4f {
|
||
|
|
|
||
|
|
public float x, y, z, w;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Constructor for Vector4f.
|
||
|
|
*/
|
||
|
|
public Vector4f() {
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|