Lines Matching defs:point
171 Point TransformMap::GetOrigPoint(const Point& point, const Rect& relativeRect)
173 Rect rect = Rect(point.x, point.y, point.x, point.y);
290 Vector4<float> point(polygon_[i].x_, polygon_[i].y_, 0, 1.0f);
291 imgPoint4 = matrix * point;
339 void Rotate(const Vector2<int16_t>& point, int16_t angle, const Vector2<int16_t>& pivot, Vector2<int16_t>& out)
344 int16_t xt = point.x_ - pivot.x_;
345 int16_t yt = point.y_ - pivot.y_;
359 Rotate(pt1, angle, pivot, out[1]); // 1: the first point of line
360 Rotate(pt2, angle, pivot, out[2]); // 2: the second point of line
370 Rotate(pt1, angle, pivot, out[1]); // 1: the first point
371 Rotate(pt2, angle, pivot, out[2]); // 2: the second point
372 Rotate(pt3, angle, pivot, out[3]); // 3: the third point
373 Rotate(pt4, angle, pivot, out[4]); // 4: the fourth point