Returns the sine of the angle measured ccw from the positive x-axis to the line between this TPoint and the specified coordinates. @param x the x coordinate @param y the x coordinate @return the sine of the angle
(double x, double y)
| 535 | * @return the sine of the angle |
| 536 | */ |
| 537 | public double sin(double x, double y) { |
| 538 | return (getY() - y) / distance(x, y); |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * Returns the sine of the angle measured ccw from the positive x-axis to the |