com.levigo.util.gwtawt.client.helper.Cloner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-awt Show documentation
Show all versions of gwt-awt Show documentation
An emulation of Java's AWT, based on OpenJDK.
The newest version!
package com.levigo.util.gwtawt.client.helper;
public class Cloner {
public static float[] clone(float[] obj) {
float[] ret = new float[obj.length];
for (int i = 0; i < obj.length; i++)
ret[i] = obj[i];
return ret;
}
}