Home | History | Annotate | Download | only in core

Lines Matching refs:Point

26 float Point::Length() const {
30 bool Point::ScaleTo(float new_length) {
40 float Point::Distance(const Point& p0, const Point& p1) {
41 Point diff = p1 - p0;
45 Point Point::operator+(const Point& other) const {
46 Point out;
52 Point Point::operator-(const Point& other) const {
53 Point out;
59 Point Point::operator*(float factor) const {
60 Point out;
66 void Point::Rotate90Clockwise() {
131 const Point& Quad::point(int ix) const {