public abstract class Tuple2i extends Object implements Serializable, Cloneable
Modifier and Type | Field and Description |
---|---|
int |
x
The x coordinate.
|
int |
y
The y coordinate.
|
Constructor and Description |
---|
Tuple2i()
Constructs and initializes a Tuple2i to (0,0).
|
Tuple2i(int[] t)
Constructs and initializes a Tuple2i from the array of length 2.
|
Tuple2i(int x,
int y)
Constructs and initializes a Tuple2i from the specified
x and y coordinates.
|
Tuple2i(Tuple2i t1)
Constructs and initializes a Tuple2i from the specified Tuple2i.
|
Modifier and Type | Method and Description |
---|---|
void |
absolute()
Sets each component of this tuple to its absolute value.
|
void |
absolute(Tuple2i t)
Sets each component of the tuple parameter to its absolute
value and places the modified values into this tuple.
|
void |
add(Tuple2i t1)
Sets the value of this tuple to the sum of itself and t1.
|
void |
add(Tuple2i t1,
Tuple2i t2)
Sets the value of this tuple to the sum of tuples t1 and t2.
|
void |
clamp(int min,
int max)
Clamps this tuple to the range [low, high].
|
void |
clamp(int min,
int max,
Tuple2i t)
Clamps the tuple parameter to the range [low, high] and
places the values into this tuple.
|
void |
clampMax(int max)
Clamps the maximum value of this tuple to the max parameter.
|
void |
clampMax(int max,
Tuple2i t)
Clamps the maximum value of the tuple parameter to the max
parameter and places the values into this tuple.
|
void |
clampMin(int min)
Clamps the minimum value of this tuple to the min parameter.
|
void |
clampMin(int min,
Tuple2i t)
Clamps the minimum value of the tuple parameter to the min
parameter and places the values into this tuple.
|
Object |
clone()
Creates a new object of the same class as this object.
|
boolean |
equals(Object t1)
Returns true if the Object t1 is of type Tuple2i and all of the
data members of t1 are equal to the corresponding data members in
this Tuple2i.
|
void |
get(int[] t)
Copies the values of this tuple into the array t.
|
void |
get(Tuple2i t)
Copies the values of this tuple into the tuple t.
|
int |
getX()
Get the x coordinate.
|
int |
getY()
Get the y coordinate.
|
int |
hashCode()
Returns a hash code value based on the data values in this
object.
|
void |
negate()
Negates the value of this tuple in place.
|
void |
negate(Tuple2i t1)
Sets the value of this tuple to the negation of tuple t1.
|
void |
scale(int s)
Sets the value of this tuple to the scalar multiplication
of the scale factor with this.
|
void |
scale(int s,
Tuple2i t1)
Sets the value of this tuple to the scalar multiplication
of tuple t1.
|
void |
scaleAdd(int s,
Tuple2i t1)
Sets the value of this tuple to the scalar multiplication
of itself and then adds tuple t1 (this = s*this + t1).
|
void |
scaleAdd(int s,
Tuple2i t1,
Tuple2i t2)
Sets the value of this tuple to the scalar multiplication
of tuple t1 plus tuple t2 (this = s*t1 + t2).
|
void |
set(int[] t)
Sets the value of this tuple to the specified coordinates in the
array of length 2.
|
void |
set(int x,
int y)
Sets the value of this tuple to the specified x and y
coordinates.
|
void |
set(Tuple2i t1)
Sets the value of this tuple to the value of tuple t1.
|
void |
setX(int x)
Set the x coordinate.
|
void |
setY(int y)
Set the y coordinate.
|
void |
sub(Tuple2i t1)
Sets the value of this tuple to the difference
of itself and t1 (this = this - t1).
|
void |
sub(Tuple2i t1,
Tuple2i t2)
Sets the value of this tuple to the difference
of tuples t1 and t2 (this = t1 - t2).
|
String |
toString()
Returns a string that contains the values of this Tuple2i.
|
public Tuple2i(int x, int y)
x
- the x coordinatey
- the y coordinatepublic Tuple2i(int[] t)
t
- the array of length 2 containing x and y in order.public Tuple2i(Tuple2i t1)
t1
- the Tuple2i containing the initialization x and y
data.public Tuple2i()
public final void set(int x, int y)
x
- the x coordinatey
- the y coordinatepublic final void set(int[] t)
t
- the array of length 2 containing x and y in order.public final void set(Tuple2i t1)
t1
- the tuple to be copiedpublic final void get(int[] t)
t
- is the arraypublic final void get(Tuple2i t)
t
- is the target tuplepublic final void add(Tuple2i t1, Tuple2i t2)
t1
- the first tuplet2
- the second tuplepublic final void add(Tuple2i t1)
t1
- the other tuplepublic final void sub(Tuple2i t1, Tuple2i t2)
t1
- the first tuplet2
- the second tuplepublic final void sub(Tuple2i t1)
t1
- the other tuplepublic final void negate(Tuple2i t1)
t1
- the source tuplepublic final void negate()
public final void scale(int s, Tuple2i t1)
s
- the scalar valuet1
- the source tuplepublic final void scale(int s)
s
- the scalar valuepublic final void scaleAdd(int s, Tuple2i t1, Tuple2i t2)
s
- the scalar valuet1
- the tuple to be multipledt2
- the tuple to be addedpublic final void scaleAdd(int s, Tuple2i t1)
s
- the scalar valuet1
- the tuple to be addedpublic String toString()
public boolean equals(Object t1)
public int hashCode()
public final void clamp(int min, int max, Tuple2i t)
min
- the lowest value in the tuple after clampingmax
- the highest value in the tuple after clampingt
- the source tuple, which will not be modifiedpublic final void clampMin(int min, Tuple2i t)
min
- the lowest value in the tuple after clampingt
- the source tuple, which will not be modifiedpublic final void clampMax(int max, Tuple2i t)
max
- the highest value in the tuple after clampingt
- the source tuple, which will not be modifiedpublic final void absolute(Tuple2i t)
t
- the source tuple, which will not be modifiedpublic final void clamp(int min, int max)
min
- the lowest value in this tuple after clampingmax
- the highest value in this tuple after clampingpublic final void clampMin(int min)
min
- the lowest value in this tuple after clampingpublic final void clampMax(int max)
max
- the highest value in the tuple after clampingpublic final void absolute()
public Object clone()
clone
in class Object
OutOfMemoryError
- if there is not enough memory.Cloneable
public final int getX()
public final void setX(int x)
x
- value to x coordinate.public final int getY()
public final void setY(int y)
y
- value to y coordinate.Copyright © 2016–2022 SciJava. All rights reserved.