Uses of Class
healpix.essentials.RangeSet

Packages that use RangeSet
healpix.essentials Package implementing essential HEALPix functionality. 
 

Uses of RangeSet in healpix.essentials
 

Methods in healpix.essentials that return RangeSet
 RangeSet RangeSet.difference(RangeSet other)
          After this operation, the RangeSet contains the difference of itself and other.
 RangeSet RangeSet.intersection(RangeSet other)
          After this operation, the RangeSet contains the intersection of itself and other.
 RangeSet HealpixBase.queryDisc(Pointing ptg, double radius)
          Returns a range set of pixels whose centers lie within a given disk.
 RangeSet HealpixBase.queryDiscInclusive(Pointing ptg, double radius, int fact)
          Returns a range set of pixels which overlap with a given disk.
static RangeSet HealpixProc.queryDiscInclusiveNest(int order, Pointing ptg, double radius, int fact)
           
static RangeSet HealpixProc.queryDiscInclusiveRing(int order, Pointing ptg, double radius, int fact)
           
static RangeSet HealpixProc.queryDiscNest(int order, Pointing ptg, double radius)
           
static RangeSet HealpixProc.queryDiscRing(int order, Pointing ptg, double radius)
           
 RangeSet HealpixBase.queryPolygon(Pointing[] vertex)
          Returns a range set of pixels whose centers lie within the convex polygon defined by the vertex array.
 RangeSet HealpixBase.queryPolygonInclusive(Pointing[] vertex, int fact)
          Returns a range set of pixels that overlap with the convex polygon defined by the vertex array.
static RangeSet HealpixProc.queryPolygonInclusiveNest(int order, Pointing[] vertex, int fact)
           
static RangeSet HealpixProc.queryPolygonInclusiveRing(int order, Pointing[] vertex, int fact)
           
static RangeSet HealpixProc.queryPolygonNest(int order, Pointing[] vertex)
           
static RangeSet HealpixProc.queryPolygonRing(int order, Pointing[] vertex)
           
 RangeSet HealpixBase.queryStrip(double theta1, double theta2, boolean inclusive)
          Returns a range set of pixels whose centers lie within a given latitude range (if inclusive==false), or which overlap with this range (if inclusive==true).
static RangeSet HealpixProc.queryStripNest(int order, double theta1, double theta2, boolean inclusive)
           
static RangeSet HealpixProc.queryStripRing(int order, double theta1, double theta2, boolean inclusive)
           
 RangeSet RangeSet.union(RangeSet other)
          After this operation, the RangeSet contains the union of itself and other.
 

Methods in healpix.essentials with parameters of type RangeSet
 void RangeSet.append(RangeSet other)
          Append an entire range set to the object.
 boolean RangeSet.containsAll(RangeSet other)
          Returns true if the set completely contains "other", else false.
 boolean RangeSet.containsAny(RangeSet other)
          Returns true if there is overlap between the set and "other", else false.
 RangeSet RangeSet.difference(RangeSet other)
          After this operation, the RangeSet contains the difference of itself and other.
 RangeSet RangeSet.intersection(RangeSet other)
          After this operation, the RangeSet contains the intersection of itself and other.
 void RangeSet.setTo(RangeSet other)
           
 void RangeSet.setToDifference(RangeSet a, RangeSet b)
          After this operation, the RangeSet contains the difference of RangeSets a and b.
 void RangeSet.setToIntersection(RangeSet a, RangeSet b)
          After this operation, the RangeSet contains the intersection of RangeSets a and b.
 void RangeSet.setToUnion(RangeSet a, RangeSet b)
          After this operation, the RangeSet contains the union of RangeSets a and b.
 RangeSet RangeSet.union(RangeSet other)
          After this operation, the RangeSet contains the union of itself and other.
 

Constructors in healpix.essentials with parameters of type RangeSet
RangeSet(RangeSet other)
          Construct new object from another RangeSet
 


"Built from revision exported"