Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CCString から b2vec2 座標を抽出する際に問題が発生しています。これらは cocos2dx と box2d からのものです。
strtk を使用してみましたが、動作しませんでした
どんな助けでも素晴らしいでしょう。
ありがとう
文字列のレイアウトは「x、yx、yx、y」です。xとyをb2vec2の配列に入れたい
string s = "12,4 4,5 6,3"; istringstream is(s); while (is.good()) { int x, y; char comma; is >> x >> comma >> y; cout << x << ", " << y << endl; }