Home | History | Annotate | Download | only in gdiplus

Lines Matching defs:SizeF

85 typedef struct SizeF {
90 SizeF(): Width(0.0f), Height(0.0f) {}
91 SizeF(REAL width, REAL height): Width(width), Height(height) {}
92 SizeF(const SizeF& size): Width(size.Width), Height(size.Height) {}
97 BOOL Equals(const SizeF& size) const {
100 SizeF operator+(const SizeF& size) const {
101 return SizeF(Width + size.Width, Height + size.Height);
103 SizeF operator-(const SizeF& size) const {
104 return SizeF(Width - size.Width, Height - size.Height);
107 } SizeF;
139 PointF(const SizeF& size): X(size.Width), Y(size.Height) {}
286 RectF(const PointF& location, const SizeF& size):
333 VOID GetSize(SizeF *size) const {