public interface RealPositionable extends Positionable
Modifier and Type | Method and Description |
---|---|
void |
move(double[] distance)
Move the element relative to its current location using a float[] as
distance vector.
|
void |
move(double distance,
int d)
Move the element in one dimension for some distance.
|
void |
move(float[] distance)
Move the element relative to its current location using a float[] as
distance vector.
|
void |
move(float distance,
int d)
Move the element in one dimension for some distance.
|
void |
move(RealLocalizable distance)
Move the element relative to its current location using a
RealLocalizable as distance vector. |
void |
setPosition(double[] position)
Set the position of the element.
|
void |
setPosition(double position,
int d)
Set the position of the element for one dimension.
|
void |
setPosition(float[] position)
Set the position of the element.
|
void |
setPosition(float position,
int d)
Set the position of the element for one dimension.
|
void |
setPosition(RealLocalizable position)
Place the element at the same location as a given
RealLocalizable |
bck, fwd, move, move, move, move, move, setPosition, setPosition, setPosition, setPosition, setPosition
numDimensions
void move(float distance, int d)
distance
- d
- void move(double distance, int d)
distance
- d
- void move(RealLocalizable distance)
RealLocalizable
as distance vector.distance
- relative offset, EuclideanSpace.numDimensions()
must
be ≥ EuclideanSpace.numDimensions()
void move(float[] distance)
distance,
- length must be ≥ EuclideanSpace.numDimensions()
void move(double[] distance)
distance,
- length must be ≥ EuclideanSpace.numDimensions()
void setPosition(RealLocalizable position)
RealLocalizable
position
- absolute position, EuclideanSpace.numDimensions()
must be ≥ EuclideanSpace.numDimensions()
void setPosition(float[] position)
position
- absolute position, length must be ≥
EuclideanSpace.numDimensions()
void setPosition(double[] position)
position
- absolute position, length must be ≥
EuclideanSpace.numDimensions()
void setPosition(float position, int d)
position
- d
- void setPosition(double position, int d)
position
- d
- Copyright © 2015–2022 ImgLib2. All rights reserved.