// Copyright 2006 Google Inc. All Rights Reserved. #ifndef UTIL_GEOMETRY_S2REGIONINTERSECTION_H__ #define UTIL_GEOMETRY_S2REGIONINTERSECTION_H__ #include using std::vector; #include "base/basictypes.h" #include "base/logging.h" #include "base/macros.h" #include "s2region.h" class S2Cap; class S2Cell; class S2LatLngRect; // An S2RegionIntersection represents the intersection of a set of regions. // It is convenient for computing a covering of the intersection of a set of // regions. class S2RegionIntersection : public S2Region { public: // Creates an empty intersection that should be initialized by calling Init(). // Note: an intersection of no regions covers the entire sphere. S2RegionIntersection(); // Create a region representing the intersection of the given regions. // Takes ownership of all regions and clears the given vector. S2RegionIntersection(vector* regions); virtual ~S2RegionIntersection(); // Initialize region by taking ownership of the given regions. void Init(vector* regions); // Release ownership of the regions of this union, and appends them to // "regions" if non-NULL. Resets the region to be empty. void Release(vector* regions); // Accessor methods. int num_regions() const { return regions_.size(); } inline S2Region* region(int i) const { return regions_[i]; } //////////////////////////////////////////////////////////////////////// // S2Region interface (see s2region.h for details): virtual S2RegionIntersection* Clone() const; virtual S2Cap GetCapBound() const; virtual S2LatLngRect GetRectBound() const; virtual bool VirtualContainsPoint(S2Point const& p) const; bool Contains(S2Point const& p) const; virtual bool Contains(S2Cell const& cell) const; virtual bool MayIntersect(S2Cell const& cell) const; virtual void Encode(Encoder* const encoder) const { S2LOG(FATAL) << "Unimplemented"; } virtual bool Decode(Decoder* const decoder) { return false; } private: // Internal constructor used only by Clone() that makes a deep copy of // its argument. S2RegionIntersection(S2RegionIntersection const* src); vector regions_; DISALLOW_EVIL_CONSTRUCTORS(S2RegionIntersection); }; #endif // UTIL_GEOMETRY_S2REGIONINTERSECTION_H__