Java Number Minus minus(double[] p, double[] q)

Here you can find the source of minus(double[] p, double[] q)

Description

minus

License

Open Source License

Declaration

private static double[] minus(double[] p, double[] q) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static double[] minus(double[] p, double[] q) {
        return new double[] { p[0] - q[0], p[1] - q[1], p[2] - q[2] };
    }/*from   w  ww  .  j  a  v  a  2 s . c  om*/
}

Related

  1. minus(boolean a, boolean b)
  2. minus(double a[], double b)
  3. minus(double[] a)
  4. minus(double[][] x, double[][] y, double[][] r)
  5. minus(int flags, int set)
  6. minus(Integer a, Integer b)
  7. minus(Number n)