i'm starting to learn cocos2d, and i was wondering why actually we use convertToGL from CCDirector, [[CCDirector sharedDirector] convertToGL: touchLoc]; when we already have the [touch view] from [touch locationInView: [touch view]]; ?

Also, we first "addChild" a CCSprite, containing an image, and then we set its body, and the ccsprite becomes the data user of this body. Would'nt it better to "addChild" the body instead? or is it for any particular purpose?

Thanks

link|improve this question

only one question please, unless the other/followup question is related to the main question – LearnCocos2D Nov 4 '11 at 17:38
1  
second part: I suppose you mean a Box2D body. The addChild method only takes objects derived from CCNode. It doesn't know how to work with the b2Body class. – LearnCocos2D Nov 4 '11 at 17:39
@LearnCocos2D : okay thanks for the quick answer! and sorry for the double question, i'll keep it in mind! – Paul Nov 4 '11 at 20:23
feedback

1 Answer

up vote 4 down vote accepted

This is because the OpenGL View (EAGLView class) uses a different coordinate system than Cocoa Touch does.

For example, the 0,0 position for Cocoa Touch is on the upper left corner, whereas the 0,0 position for OpenGL is in the lower left corner. That's why you need to "convert to GL" all UIView coordinates.

The conversion also takes into account the current device orientation.

link|improve this answer
thanks, alright it makes sense ! Cheers – Paul Nov 4 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.