정말별거없다 X, Y, Z좌표에 선하나긋는 것 using System; using Microsoft.DirectX; using Microsoft.DirectX.Direct3D; using System.Windows.Forms; using System.Drawing; namespace MDXSample { /// /// 메인 샘플 클래스 /// public partial class MainSample : IDisposable { /// /// 정점 버퍼 /// private VertexBuffer _xyzLineBuffer = null; public bool InitializeApplication(MainForm topLevelForm) { // 폼의 참조를 보관 유지 this._form = topLeve..