A point in a plane.
More...
#include <Point.h>
A point in a plane.
Definition at line 36 of file Point.h.
◆ ~Point()
virtual lsst::jointcal::Point::~Point |
( |
| ) |
|
|
inlinevirtual |
◆ Point() [1/2]
lsst::jointcal::Point::Point |
( |
| ) |
|
|
inline |
◆ Point() [2/2]
lsst::jointcal::Point::Point |
( |
double |
xx, |
|
|
double |
yy |
|
) |
| |
|
inline |
◆ computeDist2()
double lsst::jointcal::Point::computeDist2 |
( |
const Point & |
other | ) |
const |
|
inline |
distance squared to other
Definition at line 55 of file Point.h.
◆ Distance()
double lsst::jointcal::Point::Distance |
( |
const Point & |
other | ) |
const |
|
inline |
◆ operator+()
Point lsst::jointcal::Point::operator+ |
( |
const Point & |
Right | ) |
const |
|
inline |
Sum.
Definition at line 60 of file Point.h.
60 {
return Point(
x + Right.x,
y + Right.y); }
◆ operator-()
Point lsst::jointcal::Point::operator- |
( |
const Point & |
Right | ) |
const |
|
inline |
Difference.
Definition at line 63 of file Point.h.
63 {
return Point(
x - Right.x,
y - Right.y); }
◆ print()
◆ operator<<
double lsst::jointcal::Point::x |
coordinate
Definition at line 41 of file Point.h.
double lsst::jointcal::Point::y |
The documentation for this class was generated from the following file:
- /j/snowflake/release/lsstsw/stack/1a1d771/Linux64/jointcal/20.0.0/include/lsst/jointcal/Point.h