I try to get the distance between two points in http://processing.org/ is like java but dont works:
d = sqrt ((x2 - x1)**2 + (y2 - y1)**2);
the distance formula is: http://www.purplemath.com/modules/xyplane/dist07b.gif
|
I try to get the distance between two points in http://processing.org/ is like java but dont works:
the distance formula is: http://www.purplemath.com/modules/xyplane/dist07b.gif | ||||
feedback
|
|
Java doesn't have an exponentiation operator. Instead, try Math.pow(x, 2) or x*x. | |||||
feedback
|
|
Processing already comes with a function to calculate the distance between two points in 2d and 3d. Just implement
| |||
|
feedback
|
|
According to http://processing.org/reference/ this should work:
Although I'm not totally clear if you need this in Processing or in Java. | |||
|
feedback
|
|
Just use the built-in Processing classes and methods:
| |||
|
feedback
|
|
Use the build in dist function from processing: http://processing.org/reference/dist_.html. Btw, this is the way it works internally: http://www.google.com/codesearch#Ej56LtI_pY0/trunk/processing/core/src/processing/core/PApplet.java&q=dist%20package:http://processing%5C.googlecode%5C.com&ct=rc&cd=8&sq=&l=3314 | |||
|
feedback
|
|
You've got a couple of things a bit wrong. It should be:
other options:
or
Imagine you're distance as the hypothenuse of a right angled triangle. One side is defined by the X axis (it's length is x2-x1) and the other by the Y axis (it's length is y2-y1). Since the distance is the hypothenuse, and you know the sides, you simply apply Pythagoras theorem:
| |||
|
feedback
|