Here you can find the source of fillArray(float[] batchVertices, float f)
public static void fillArray(float[] batchVertices, float f)
//package com.java2s; //License from project: Apache License import java.util.Arrays; public class Main { public static void fillArray(float[] batchVertices, float f) { Arrays.fill(batchVertices, f); }// w w w . j a va 2 s.c o m }