Class RandomLocationTransformer<V>

  • Type Parameters:
    V - the vertex type
    All Implemented Interfaces:
    Function<V,​Point>

    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
    • 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