/** * (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(); } }