Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static void set4fArray(float[] destination, float[] source) { System.arraycopy(source, 0, destination, 0, 4); } }