0

重複の可能性:
Iphone Coreplot

ユーザー入力用に曲線のグラフを iPhone アプリに追加したいと考えています。誰でもコードを手伝ってもらえますか?

  if(ABS(startPt.x - endPt.x) > ABS(startPt.y - endPt.y)) {
        cPt1 = (CGPoint){(startPt.x + endPt.x) / 2, startPt.y};
        cPt2 = (CGPoint){cPt1.x, endPt.y};
    } else {
        cPt1 = (CGPoint){startPt.x, (startPt.y + endPt.y) / 2};
        cPt2 = (CGPoint){endPt.x, cPt1.y};
4

0 に答える 0