DrawBasicGeometryClass.cs
上传用户:lslight
上传日期:2022-01-10
资源大小:14248k
文件大小:1k
- ///////////////////////////////////////////////////////////////////////
- // ■■■■ ■■■■■ ■■■■ ■ ■ //
- // ■ ■ ■ ■ ■ //
- // ■ ■ ■ ■■■ ■ ■ //
- // ■ ■ ■ ■ ■ ■ //
- // ■■■■ ■ ■■■■ ■■■■ //
- // Copyright (c) 三峡大学水利与环境学院 肖泽云. All rights reserved. //
- ////////////////////////////////////////////////////////////////////////
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Microsoft.DirectX;
- using Microsoft.DirectX.Direct3D;
- namespace 摄像机变换
- {
- class DrawBasicGeometryClass
- {
- public Device device;
- public DrawBasicGeometryClass(Device _device)
- {
- device = _device;
- }
- public void DrawTri()
- {
- //device.DrawPrimitives(
- }
- }
- }