| 
									
										
										
										
											2018-05-22 22:55:06 +08:00
										 |  |  | #include "..\e2dcommon.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | e2d::Rect::Rect(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-07-28 20:06:27 +08:00
										 |  |  | 	setRect(0.f, 0.f, 0.f, 0.f); | 
					
						
							| 
									
										
										
										
											2018-05-22 22:55:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 20:06:27 +08:00
										 |  |  | e2d::Rect::Rect(float x, float y, float width, float height) | 
					
						
							| 
									
										
										
										
											2018-05-22 22:55:06 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	setRect(x, y, width, height); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | e2d::Rect::Rect(const Point& pos, const Size& size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	setRect(pos.x, pos.y, size.width, size.height); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | e2d::Rect::Rect(const Rect& other) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	setRect(other.origin.x, other.origin.y, other.size.width, other.size.height); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | e2d::Rect& e2d::Rect::operator= (const Rect& other) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	setRect(other.origin.x, other.origin.y, other.size.width, other.size.height); | 
					
						
							|  |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool e2d::Rect::operator==(const Rect & rect) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return (origin == rect.origin) && (size == rect.size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 20:06:27 +08:00
										 |  |  | void e2d::Rect::setRect(float x, float y, float width, float height) | 
					
						
							| 
									
										
										
										
											2018-05-22 22:55:06 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	origin.x = x; | 
					
						
							|  |  |  | 	origin.y = y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	size.width = width; | 
					
						
							|  |  |  | 	size.height = height; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool e2d::Rect::containsPoint(const Point& point) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (point.x >= origin.x && point.x <= (origin.y + size.height) | 
					
						
							|  |  |  | 		&& point.y >= origin.y && point.y <= (origin.y + size.height)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool e2d::Rect::intersects(const Rect& rect) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return !((origin.x + size.width)			< rect.origin.x || | 
					
						
							|  |  |  | 			(rect.origin.x + rect.size.width)	<      origin.x || | 
					
						
							|  |  |  | 			(origin.y + size.height)			< rect.origin.y || | 
					
						
							|  |  |  | 			(rect.origin.y + rect.size.height)	<      origin.y); | 
					
						
							|  |  |  | } |