hello,
still new and still trying to understand, I stumbled upon:
CCPoint locationInView(int nViewId) {CC_UNUSED_PARAM(nViewId); return m_point; }
CCPoint previousLocationInView(int nViewId) {CC_UNUSED_PARAM(nViewId); return m_prevPoint; }
in CCTouch.h
What is this concept of View? why with CC_UNUSED_PARAMETER?
there is also
CCPoint m_prevPoint; does this mean we have some sort of previous point of the touch?
Is this concept of view related to CCDrawingPrimives?
By look at CCDrawingprimitive.h and .cpp I could not figure out on which object those points are drawn?