Here you can find the source of Vector2fNew()
public static float[] Vector2fNew()
//package com.java2s; /*//from www .j a va 2s . co m * leola-live * see license.txt */ public class Main { public static float[] Vector2fNew() { return new float[] { 0, 0 }; } }