- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: Windows
- 软件首页: https://github.com/Microsoft/DirectXTK
- 软件文档: https://github.com/Microsoft/DirectXTK
软件介绍
DirectXTK 全称是 DirectX Tool Kit ,包含一组在 C++ 中编写 DirectX 11.x 代码的助手类。
示例代码:
std::unique_ptr<SpriteBatch> spriteBatch(new SpriteBatch(deviceContext)); std::unique_ptr<SpriteFont> spriteFont(new SpriteFont(device, L"myfile.spritefont")); spriteBatch->Begin(); spriteFont->DrawString(spriteBatch.get(), L"Hello, world!", XMFLOAT2(x, y)); spriteBatch->End();
GitHub入门与实践
[日] 大塚弘记 / 支鹏浩、刘斌 / 人民邮电出版社 / 2015-7 / 39.00元
本书从Git的基本知识和操作方法入手,详细介绍了GitHub的各种功能,GitHub与其他工具或服务的协作,使用GitHub的开发流程以及如何将GitHub引入到企业中。在讲解GitHub的代表功能Pull Request时,本书专门搭建了供各位读者实践的仓库,邀请各位读者进行Pull Request并共同维护。一起来看看 《GitHub入门与实践》 这本书的介绍吧!