Here you can find the source of copyMatrix(float[] origin, float destination[])
public static void copyMatrix(float[] origin, float destination[])
//package com.java2s; //License from project: Open Source License public class Main { public static void copyMatrix(float[] origin, float destination[]) { System.arraycopy(origin, 0, destination, 0, origin.length); }//from w w w . j a v a 2 s.c o m }