*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2003-02-20 12:16:49 +00:00
parent c84ab8669d
commit 24ac909558
2 changed files with 17 additions and 1 deletions

View File

@ -283,5 +283,22 @@ public class Vector3f extends Vector {
return this;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
StringBuffer sb = new StringBuffer(64);
sb.append("Vector3f[");
sb.append(x);
sb.append(", ");
sb.append(y);
sb.append(", ");
sb.append(z);
sb.append(']');
return sb.toString();
}
}

View File

@ -183,7 +183,6 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_end(JNIEnv * env, jobject ob
JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_arrayElement(JNIEnv * env, jobject obj, jint p0)
{
glArrayElement((GLint) p0);
CHECK_GL_ERROR
}
/*