Class RandomLocationTransformer<V>
- java.lang.Object
-
- org.jungrapht.visualization.layout.util.RandomLocationTransformer<V>
-
- Type Parameters:
V
- the vertex type
public class RandomLocationTransformer<V> extends Object implements Function<V,Point>
Provides a random vertex location within the bounds of the width and height. This provides a random location for unmapped vertices the first time they are accessed.Note: the generated values are not cached, so animate() will generate a new random location for the passed vertex every time it is called. If you want a consistent value, wrap this // * layout's generated values in a instance.
- Author:
- Tom Nelson
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RandomLocationTransformer.Origin
-
Constructor Summary
Constructors Constructor Description RandomLocationTransformer(double width, double height)
Creates an instance with the specified layoutSize which uses the current time as the random seed.RandomLocationTransformer(double width, double height, long seed)
Creates an instance with the specified dimension and random seed.RandomLocationTransformer(RandomLocationTransformer.Origin origin, double width, double height)
Creates an instance with the specified layoutSize which uses the current time as the random seed.RandomLocationTransformer(RandomLocationTransformer.Origin origin, double width, double height, long seed)
Creates an instance with the specified dimension and random seed.
-
-
-
Field Detail
-
width
protected double width
-
height
protected double height
-
random
protected Random random
-
origin
protected RandomLocationTransformer.Origin origin
-
-
Constructor Detail
-
RandomLocationTransformer
public RandomLocationTransformer(double width, double height)
Creates an instance with the specified layoutSize which uses the current time as the random seed.- Parameters:
width
- , height the layoutSize of the layout area
-
RandomLocationTransformer
public RandomLocationTransformer(RandomLocationTransformer.Origin origin, double width, double height)
Creates an instance with the specified layoutSize which uses the current time as the random seed.- Parameters:
width
- , height the layoutSize of the layout area
-
RandomLocationTransformer
public RandomLocationTransformer(double width, double height, long seed)
Creates an instance with the specified dimension and random seed.- Parameters:
seed
- the seed for the internal random number generator
-
RandomLocationTransformer
public RandomLocationTransformer(RandomLocationTransformer.Origin origin, double width, double height, long seed)
Creates an instance with the specified dimension and random seed.- Parameters:
seed
- the seed for the internal random number generator
-
-