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.
実行時に導出される 2 点間に線を引くにはどうすればよいでしょうか? これらは、3D 空間内の 2 つの 3 次元ポイントです。ありがとう。
まあ..かなり簡単です。
への呼び出しの最初のパラメーターとして D3DPT_LINELIST を使用します。
IDirect3DDevice9::DrawPrimitive();
ジオメトリは線としてレンダリングされます。
幸運を祈ります!