* * */ //package com.java2s; public class Main { public static float[] differentiate3Vector(float[] first, float[] second) { float[] ret = new float[3]; for (int i = 0; i < 3; i++) { ret[i] = second[i] - first[i]; } return ret; } } ...