25package umontreal.ssj.hups;
27import umontreal.ssj.util.PrintfFormat;
51 double u = P.getCoordinate(i, j);
78 double u = innerIterator.nextCoordinate();
82 return 2.0 * (1.0 - u);
87 double u = innerIterator.nextCoordinate();
91 return 2.0 * (1.0 - u);
95 innerIterator.nextCoordinates(p, d);
96 for (
int j = 0; j < d; j++)
100 p[j] = 2.0 * (1.0 - p[j]);
104 innerIterator.nextPoint(p, d);
105 for (
int j = 0; j < d; j++)
109 p[j] = 2.0 * (1.0 - p[j]);
This acts as a generic base class for all container classes that contain a point set and apply a spec...
void init(PointSet p0)
Initializes this container point set so that it will contain the point set p0.
This abstract class represents a general point set.
This is the interface for iterators that permit one to go through the points of a PointSet and the su...