Home
last modified time | relevance | path

Searched defs:PointF (Results 1 – 1 of 1) sorted by relevance

/third_party/mingw-w64/mingw-w64-headers/include/gdiplus/
Dgdiplustypes.h135 typedef struct PointF { struct
140 PointF(): X(0.0f), Y(0.0f) {} in PointF() argument
141 PointF(REAL x, REAL y): X(x), Y(y) {} in PointF() function
142 PointF(const PointF& point): X(point.X), Y(point.Y) {} in PointF() argument
143 PointF(const SizeF& size): X(size.Width), Y(size.Height) {} in PointF() function
145 BOOL Equals(const PointF& point) const { in Equals() argument
155 } PointF; typedef