Package | Description |
---|---|
us.ihmc.euclid.tools | |
us.ihmc.euclid.tuple2D |
Modifier and Type | Method | Description |
---|---|---|
static Vector2D |
EuclidCoreRandomTools.generateRandomVector2D(java.util.Random random) |
Deprecated.
Use
EuclidCoreRandomTools.nextVector2D(Random) instead |
static Vector2D |
EuclidCoreRandomTools.generateRandomVector2D(java.util.Random random,
double min,
double max) |
Deprecated.
|
static Vector2D |
EuclidCoreRandomTools.generateRandomVector2D(java.util.Random random,
Tuple2DReadOnly minMax) |
Deprecated.
|
static Vector2D |
EuclidCoreRandomTools.generateRandomVector2D(java.util.Random random,
Tuple2DReadOnly min,
Tuple2DReadOnly max) |
Deprecated.
|
static Vector2D |
EuclidCoreRandomTools.generateRandomVector2DWithFixedLength(java.util.Random random,
double length) |
Deprecated.
|
static Vector2D |
EuclidCoreRandomTools.nextVector2D(java.util.Random random) |
Generates a random 2D vector.
|
static Vector2D |
EuclidCoreRandomTools.nextVector2D(java.util.Random random,
double min,
double max) |
Generates a random vector.
|
static Vector2D |
EuclidCoreRandomTools.nextVector2D(java.util.Random random,
Tuple2DReadOnly minMax) |
Generates a random 2D vector.
|
static Vector2D |
EuclidCoreRandomTools.nextVector2D(java.util.Random random,
Tuple2DReadOnly min,
Tuple2DReadOnly max) |
Generates a random 2D vector.
|
static Vector2D |
EuclidCoreRandomTools.nextVector2DWithFixedLength(java.util.Random random,
double length) |
Generates a random 2D vector given its length
length . |
Modifier and Type | Method | Description |
---|---|---|
boolean |
Vector2D.epsilonEquals(Vector2D other,
double epsilon) |
Tests on a per component basis if this vector is equal to the given
other to an
epsilon . |
boolean |
Vector2D.geometricallyEquals(Vector2D other,
double epsilon) |
Tests if
this and other represent the same vector 2D to an epsilon . |
void |
Vector2D.set(Vector2D other) |
Sets this vector to
other . |