LSSTApplications
17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
|
Circle
is a circular region on the unit sphere that contains its boundary.
More...
#include <Circle.h>
Public Member Functions | |
Circle () | |
This constructor creates an empty circle. More... | |
Circle (UnitVector3d const &c) | |
This constructor creates the circle with center c and squared chord length / opening angle of zero. More... | |
Circle (UnitVector3d const &c, Angle a) | |
This constructor creates a circle with center c and opening angle a. More... | |
Circle (UnitVector3d const &c, double cl2) | |
This constructor creates a circle with center c and squared chord length cl2. More... | |
bool | operator== (Circle const &c) const |
bool | operator!= (Circle const &c) const |
bool | isEmpty () const |
bool | isFull () const |
UnitVector3d const & | getCenter () const |
getCenter returns the center of this circle as a unit vector. More... | |
double | getSquaredChordLength () const |
getSquaredChordLength returns the squared length of chords between the circle center and points on the circle boundary. More... | |
Angle | getOpeningAngle () const |
getOpeningAngle returns the opening angle of this circle - that is, the angle between its center vector and points on its boundary. More... | |
bool | contains (Circle const &x) const |
contains returns true if the intersection of this circle and x is equal to x. More... | |
Circle & | dilateBy (Angle r) |
If r is positive, dilateBy increases the opening angle of this circle to include all points within angle r of its boundary. More... | |
Circle | dilatedBy (Angle r) const |
Circle & | erodeBy (Angle r) |
Circle | erodedBy (Angle r) const |
double | getArea () const |
getArea returns the area of this circle in steradians. More... | |
Circle & | complement () |
complement sets this circle to the closure of its complement. More... | |
Circle | complemented () const |
complemented returns the closure of the complement of this circle. More... | |
Relationship | relate (UnitVector3d const &v) const |
std::unique_ptr< Region > | clone () const override |
clone returns a deep copy of this region. More... | |
Box | getBoundingBox () const override |
getBoundingBox returns a bounding-box for this region. More... | |
Box3d | getBoundingBox3d () const override |
getBoundingBox3d returns a 3-dimensional bounding-box for this region. More... | |
Circle | getBoundingCircle () const override |
getBoundingCircle returns a bounding-circle for this region. More... | |
bool | contains (UnitVector3d const &v) const override |
contains tests whether the given unit vector is inside this region. More... | |
Relationship | relate (Region const &r) const override |
Relationship | relate (Box const &) const override |
Relationship | relate (Circle const &) const override |
Relationship | relate (ConvexPolygon const &) const override |
Relationship | relate (Ellipse const &) const override |
std::vector< uint8_t > | encode () const override |
encode serializes this region into an opaque byte string. More... | |
bool | isDisjointFrom (UnitVector3d const &x) const |
bool | isDisjointFrom (Circle const &x) const |
bool | intersects (UnitVector3d const &x) const |
bool | intersects (Circle const &x) const |
bool | isWithin (UnitVector3d const &) const |
bool | isWithin (Circle const &x) const |
Circle & | clipTo (UnitVector3d const &x) |
Circle & | clipTo (Circle const &x) |
Circle | clippedTo (UnitVector3d const &x) const |
Circle | clippedTo (Circle const &x) const |
Circle & | expandTo (UnitVector3d const &x) |
Circle & | expandTo (Circle const &x) |
Circle | expandedTo (UnitVector3d const &x) const |
Circle | expandedTo (Circle const &x) const |
Static Public Member Functions | |
static Circle | empty () |
static Circle | full () |
static double | squaredChordLengthFor (Angle openingAngle) |
squaredChordLengthFor computes and returns the squared chord length between points in S² that are separated by the given angle. More... | |
static Angle | openingAngleFor (double squaredChordLength) |
openingAngleFor computes and returns the angular separation between points in S² that are separated by the given squared chord length. More... | |
static std::unique_ptr< Circle > | decode (std::vector< uint8_t > const &s) |
static std::unique_ptr< Circle > | decode (uint8_t const *buffer, size_t n) |
Static Public Attributes | |
static constexpr uint8_t | TYPE_CODE = 'c' |
Circle
is a circular region on the unit sphere that contains its boundary.
Internally, the circle is represented by its center vector and the squared length of the chords between its center and points on its boundary. This yields a fast point-in-circle test but, unlike a representation that uses the center vector and cosine of the circle opening angle, remains accurate for circles with very small opening angles.
|
inline |
|
inlineexplicit |
This constructor creates the circle with center c and squared chord length / opening angle of zero.
Because of rounding error, (v - c).squaredNorm() == 0.0 does not imply that v == c. Therefore calling contains(v) on the resulting circle may return true for unit vectors v != c.
|
inline |
This constructor creates a circle with center c and opening angle a.
If a is negative or NaN, the circle will be empty, and if a is greater than or equal to PI, the circle will be full.
Definition at line 85 of file Circle.h.
|
inline |
This constructor creates a circle with center c and squared chord length cl2.
If cl2 is negative or NaN, the circle will be empty, and if cl2 is greater than or equal to 4, the circle will be full.
Definition at line 94 of file Circle.h.
|
inline |
clippedTo
returns the minimal bounding circle for the intersection of this circle and x.
Definition at line 165 of file Circle.h.
clippedTo
returns the minimal bounding circle for the intersection of this circle and x.
Definition at line 169 of file Circle.h.
Circle & lsst::sphgeom::Circle::clipTo | ( | UnitVector3d const & | x | ) |
clipTo
sets this circle to the minimal bounding circle for the intersection of this circle and x.
Definition at line 88 of file Circle.cc.
|
inlineoverridevirtual |
clone
returns a deep copy of this region.
Implements lsst::sphgeom::Region.
Definition at line 222 of file Circle.h.
Circle & lsst::sphgeom::Circle::complement | ( | ) |
complement
sets this circle to the closure of its complement.
Note that both the empty circle as well as all circles containing a single point are mapped to a full circle, so that taking the complement of a circle twice is not guaranteed to reproduce the original circle, even in the absence of rounding error.
Definition at line 194 of file Circle.cc.
|
inline |
complemented
returns the closure of the complement of this circle.
Definition at line 217 of file Circle.h.
bool lsst::sphgeom::Circle::contains | ( | Circle const & | x | ) | const |
|
inlineoverridevirtual |
contains
tests whether the given unit vector is inside this region.
Implements lsst::sphgeom::Region.
Definition at line 230 of file Circle.h.
|
inlinestatic |
decode
deserializes a Circle from a byte string produced by encode.
Definition at line 249 of file Circle.h.
|
static |
decode
deserializes a Circle from a byte string produced by encode.
Definition at line 337 of file Circle.cc.
If r is positive, dilateBy
increases the opening angle of this circle to include all points within angle r of its boundary.
If r is negative, it decreases the opening angle to exclude those points instead.
If this circle is empty or full, or r is zero or NaN, there is no effect.
Definition at line 184 of file Circle.cc.
Definition at line 200 of file Circle.h.
|
inlinestatic |
Definition at line 50 of file Circle.h.
|
overridevirtual |
encode
serializes this region into an opaque byte string.
Byte strings emitted by encode can be deserialized with decode.
Implements lsst::sphgeom::Region.
Definition at line 324 of file Circle.cc.
Definition at line 201 of file Circle.h.
|
inline |
expandedTo
returns the minimal bounding circle for the union of this circle and x.
Definition at line 183 of file Circle.h.
expandedTo
returns the minimal bounding circle for the union of this circle and x.
Definition at line 187 of file Circle.h.
Circle & lsst::sphgeom::Circle::expandTo | ( | UnitVector3d const & | x | ) |
expandTo
minimally expands this circle to contain x.
Definition at line 120 of file Circle.cc.
expandTo
minimally expands this circle to contain x.
Definition at line 144 of file Circle.cc.
|
inlinestatic |
Definition at line 52 of file Circle.h.
|
inline |
|
overridevirtual |
getBoundingBox
returns a bounding-box for this region.
Implements lsst::sphgeom::Region.
Definition at line 211 of file Circle.cc.
|
overridevirtual |
getBoundingBox3d
returns a 3-dimensional bounding-box for this region.
Implements lsst::sphgeom::Region.
Definition at line 219 of file Circle.cc.
|
inlineoverridevirtual |
getBoundingCircle
returns a bounding-circle for this region.
Implements lsst::sphgeom::Region.
|
inline |
|
inline |
|
inline |
|
inline |
intersects
returns true if the intersection of this circle and x is non-empty.
Definition at line 144 of file Circle.h.
|
inline |
intersects
returns true if the intersection of this circle and x is non-empty.
Definition at line 145 of file Circle.h.
|
inline |
isDisjointFrom
returns true if the intersection of this circle and x is empty.
Definition at line 137 of file Circle.h.
bool lsst::sphgeom::Circle::isDisjointFrom | ( | Circle const & | x | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
|
static |
|
inline |
|
inline |
Relationship lsst::sphgeom::Circle::relate | ( | UnitVector3d const & | v | ) | const |
Definition at line 268 of file Circle.cc.
|
inlineoverridevirtual |
relate
computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:
S & DISJOINT
is set only if A and B do not have any points in common.S & CONTAINS
is set only if A contains all points in B.S & WITHIN
is set only if B contains all points in A.Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.
These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate
by replacing itself and/or the argument with a simplified bounding region.
Implements lsst::sphgeom::Region.
Definition at line 235 of file Circle.h.
|
overridevirtual |
relate
computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:
S & DISJOINT
is set only if A and B do not have any points in common.S & CONTAINS
is set only if A contains all points in B.S & WITHIN
is set only if B contains all points in A.Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.
These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate
by replacing itself and/or the argument with a simplified bounding region.
Implements lsst::sphgeom::Region.
Definition at line 277 of file Circle.cc.
|
overridevirtual |
relate
computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:
S & DISJOINT
is set only if A and B do not have any points in common.S & CONTAINS
is set only if A contains all points in B.S & WITHIN
is set only if B contains all points in A.Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.
These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate
by replacing itself and/or the argument with a simplified bounding region.
Implements lsst::sphgeom::Region.
Definition at line 282 of file Circle.cc.
|
overridevirtual |
relate
computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:
S & DISJOINT
is set only if A and B do not have any points in common.S & CONTAINS
is set only if A contains all points in B.S & WITHIN
is set only if B contains all points in A.Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.
These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate
by replacing itself and/or the argument with a simplified bounding region.
Implements lsst::sphgeom::Region.
Definition at line 314 of file Circle.cc.
|
overridevirtual |
relate
computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:
S & DISJOINT
is set only if A and B do not have any points in common.S & CONTAINS
is set only if A contains all points in B.S & WITHIN
is set only if B contains all points in A.Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.
These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate
by replacing itself and/or the argument with a simplified bounding region.
Implements lsst::sphgeom::Region.
Definition at line 319 of file Circle.cc.
|
static |
|
static |