DrawBasicGeometryClass.cs
上传用户:lslight
上传日期:2022-01-10
资源大小:14248k
文件大小:1k
源码类别:

DirextX编程

开发平台:

C#

  1. ///////////////////////////////////////////////////////////////////////
  2. //      ■■■■     ■■■■■       ■■■■       ■       ■      //
  3. //    ■                 ■         ■               ■       ■      //
  4. //    ■                 ■         ■    ■■■     ■       ■      //
  5. //    ■                 ■         ■       ■      ■       ■      //
  6. //      ■■■■         ■           ■■■■         ■■■■       //
  7. // Copyright (c) 三峡大学水利与环境学院 肖泽云. All rights reserved.  //
  8. ////////////////////////////////////////////////////////////////////////
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Text;
  12. using Microsoft.DirectX;
  13. using Microsoft.DirectX.Direct3D;
  14. namespace 摄像机变换
  15. {
  16.     class DrawBasicGeometryClass
  17.     {
  18.         public Device device;
  19.         public DrawBasicGeometryClass(Device _device)
  20.         {
  21.             device = _device;
  22.         }
  23.         public void DrawTri()
  24.         {
  25.             //device.DrawPrimitives(
  26.         }
  27.     }
  28. }