Java Vector Length Get vectorLengthDyDx(double dy, double dx)

Here you can find the source of vectorLengthDyDx(double dy, double dx)

Description

vector Length Dy Dx

License

LGPL

Declaration

public static double vectorLengthDyDx(double dy, double dx) 

Method Source Code

//package com.java2s;

public class Main {
    public static double vectorLengthDyDx(double dy, double dx) {
        return Math.sqrt(dy * dy + dx * dx);
    }/* ww  w  .  j  a v  a  2s  .c  o m*/
}

Related

  1. vectorLength(double[] vector)
  2. vectorLength(Double[] vector)
  3. vectorLength(double[] vector)
  4. vectorLengthSquared(float vx, float vy, float vz)