Class PAreaDGenerator<S>

java.lang.Object
com.io7m.jregions.generators.PAreaDGenerator<S>
Type Parameters:
S - A phantom type parameter indicating the coordinate space of the area
All Implemented Interfaces:
net.java.quickcheck.Generator<PAreaD<S>>

public final class PAreaDGenerator<S>
extends java.lang.Object
implements net.java.quickcheck.Generator<PAreaD<S>>
A generator for areas.
  • Constructor Summary

    Constructors 
    Constructor Description
    PAreaDGenerator​(net.java.quickcheck.Generator<java.lang.Double> in_gen)
    Create a new generator.
  • Method Summary

    Modifier and Type Method Description
    static <S> PAreaDGenerator<S> create()  
    PAreaD<S> next()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • PAreaDGenerator

      public PAreaDGenerator​(net.java.quickcheck.Generator<java.lang.Double> in_gen)
      Create a new generator.
      Parameters:
      in_gen - A number generator
  • Method Details

    • create

      public static <S> PAreaDGenerator<S> create()
      Type Parameters:
      S - A phantom type parameter indicating the coordinate space of the area
      Returns:
      A generator initialized with useful defaults
    • next

      public PAreaD<S> next()
      Specified by:
      next in interface net.java.quickcheck.Generator<S>