I am developing a game using Cocos2d, the problem i am facing is while getting CGRect of the wheel which i have placed at anchor points(0.5,0.5) and position at win-size width/2-height/2.I am detecting touch on wheel and i am facing problem in that using CGRect.intersects(CGRect a,CGRect b).
I am trying this to get wheel CGRect positions
CGRect wheelrect=CGRect.make(wheel.getPosition().x-(wheel.getContentSize().width),
wheel.getPosition().y-(wheel.getContentSize().height),
wheel.getContentSize().getWidth(),
wheel.getContentSize().getHeight());
I am getting CGRect of left half of the wheel, But i need to detect the touch on whole wheel.
I am using Intersect method of CGRect to follow the intersect points.
Need some help.Thanks in advance.