Java Array Fill fillArray(float[] batchVertices, float f)

Here you can find the source of fillArray(float[] batchVertices, float f)

Description

fill Array

License

Apache License

Declaration

public static void fillArray(float[] batchVertices, float f) 

Method Source Code

//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
}

Related

  1. fillArray(byte[] data)
  2. fillArray(char[] array, int offset, char value)
  3. fillArray(double[][][] array, double[] value, int rows, int columns)
  4. fillArray(final float[] array, final float value)
  5. fillArray(float filling, int length)
  6. fillArray(int arrayLength)
  7. fillArray(int min, int max)
  8. fillArray(int size, Float value)
  9. fillArray(int value, int length)