私の問題は、タッチ位置のちょうど半分の線を描きたいということです。ここのタッチ位置の半分までが私のコードです
-(void)draw{
glEnable(GL_LINE_SMOOTH);
glLineWidth(3.0f); // set line width
glColor4f(0.8, 1.0, 0.76, 1.0); // set line color.
ccDrawLine(point1,Point2);
}
-(void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch* touch = [touches anyObject];
CGPoint location = [touch locationInView: [touch view]];
location = [[CCDirector sharedDirector] convertToGL:location];
point1 = location;
Point2=CGPointMake(size.width/2, size.height/2);
}
どんな助けでも大歓迎です。