0d0cb7f8ec
miso dependencies. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@244 542714f4-19e9-0310-aa3c-eee0fc999fb1
41 lines
914 B
Java
41 lines
914 B
Java
//
|
|
// $Id: MathUtil.java,v 1.3 2001/08/14 22:54:45 mdb Exp $
|
|
|
|
package com.threerings.media.util;
|
|
|
|
import com.threerings.media.Log;
|
|
|
|
import java.awt.Point;
|
|
|
|
/**
|
|
* Provides miscellaneous useful utility routines for mathematical
|
|
* calculations.
|
|
*/
|
|
public class MathUtil
|
|
{
|
|
/**
|
|
* Return the distance between the given points.
|
|
*/
|
|
public static float distance (int x0, int y0, int x1, int y1)
|
|
{
|
|
return (float)Math.sqrt(((x1 - x0) * (x1 - x0)) +
|
|
((y1 - y0) * (y1 - y0)));
|
|
}
|
|
|
|
/**
|
|
* Return a string representation of the given line.
|
|
*/
|
|
public static String lineToString (int x0, int y0, int x1, int y1)
|
|
{
|
|
return "(" + x0 + ", " + y0 + ") -> (" + x1 + ", " + y1 + ")";
|
|
}
|
|
|
|
/**
|
|
* Return a string representation of the given line.
|
|
*/
|
|
public static String lineToString (Point p1, Point p2)
|
|
{
|
|
return lineToString(p1.x, p1.y, p2.x, p2.y);
|
|
}
|
|
}
|