Class IntervalsSet

All Implemented Interfaces:
Iterable<double[]>, Region<Euclidean1D,Vector1D,OrientedPoint,SubOrientedPoint>

This class represents a 1D region: a set of intervals.
  • Constructor Details Link icon

    • IntervalsSet Link icon

      public IntervalsSet(double tolerance)
      Build an intervals set representing the whole real line.
      Parameters:
      tolerance - tolerance below which points are considered identical.
    • IntervalsSet Link icon

      public IntervalsSet(double lower, double upper, double tolerance)
      Build an intervals set corresponding to a single interval.
      Parameters:
      lower - lower bound of the interval, must be lesser or equal to upper (may be Double.NEGATIVE_INFINITY)
      upper - upper bound of the interval, must be greater or equal to lower (may be Double.POSITIVE_INFINITY)
      tolerance - tolerance below which points are considered identical.
    • IntervalsSet Link icon

      public IntervalsSet(BSPTree<Euclidean1D,Vector1D,OrientedPoint,SubOrientedPoint> tree, double tolerance)
      Build an intervals set from an inside/outside BSP tree.

      The leaf nodes of the BSP tree must have a Boolean attribute representing the inside status of the corresponding cell (true for inside cells, false for outside cells). In order to avoid building too many small objects, it is recommended to use the predefined constants Boolean.TRUE and Boolean.FALSE

      Parameters:
      tree - inside/outside BSP tree representing the intervals set
      tolerance - tolerance below which points are considered identical.
    • IntervalsSet Link icon

      public IntervalsSet(Collection<SubOrientedPoint> boundary, double tolerance)
      Build an intervals set from a Boundary REPresentation (B-rep).

      The boundary is provided as a collection of sub-hyperplanes. Each sub-hyperplane has the interior part of the region on its minus side and the exterior on its plus side.

      The boundary elements can be in any order, and can form several non-connected sets (like for example polygons with holes or a set of disjoints polyhedrons considered as a whole). In fact, the elements do not even need to be connected together (their topological connections are not used here). However, if the boundary does not really separate an inside open from an outside open (open having here its topological meaning), then subsequent calls to the checkPoint method will not be meaningful anymore.

      If the boundary is empty, the region will represent the whole space.

      Parameters:
      boundary - collection of boundary elements
      tolerance - tolerance below which points are considered identical.
  • Method Details Link icon