Package | Description |
---|---|
us.ihmc.euclid.tools | |
us.ihmc.euclid.tuple2D |
Modifier and Type | Method | Description |
---|---|---|
static Point2D |
EuclidCoreRandomTools.generateRandomPoint2D(java.util.Random random) |
Deprecated.
Use
EuclidCoreRandomTools.nextPoint2D(Random) instead |
static Point2D |
EuclidCoreRandomTools.generateRandomPoint2D(java.util.Random random,
double minMax) |
Deprecated.
Use
EuclidCoreRandomTools.nextPoint2D(Random,double) instead |
static Point2D |
EuclidCoreRandomTools.generateRandomPoint2D(java.util.Random random,
double min,
double max) |
Deprecated.
|
static Point2D |
EuclidCoreRandomTools.generateRandomPoint2D(java.util.Random random,
double minX,
double maxX,
double minY,
double maxY) |
Deprecated.
|
static Point2D |
EuclidCoreRandomTools.nextPoint2D(java.util.Random random) |
Generates a random 2D point.
|
static Point2D |
EuclidCoreRandomTools.nextPoint2D(java.util.Random random,
double minMax) |
Generates a random 2D point.
|
static Point2D |
EuclidCoreRandomTools.nextPoint2D(java.util.Random random,
double min,
double max) |
Generates a random point.
|
static Point2D |
EuclidCoreRandomTools.nextPoint2D(java.util.Random random,
double minX,
double maxX,
double minY,
double maxY) |
Generates a random point.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
Point2D.epsilonEquals(Point2D other,
double epsilon) |
Tests on a per component basis if this point is equal to the given
other to an
epsilon . |
boolean |
Point2D.geometricallyEquals(Point2D other,
double epsilon) |
Tests if
this and other represent the same point 2D to an epsilon . |
void |
Point2D.set(Point2D other) |
Sets this point to
other . |