1
0
mirror of https://github.com/microsoft/DirectXMath synced 2024-11-26 22:10:06 +00:00

Updated Home (markdown)

Chuck Walbourn 2020-12-19 14:15:19 -08:00
parent c9e1dc0f9b
commit d86c1463cf

16
Home.md

@ -9,6 +9,22 @@ http://go.microsoft.com/fwlink/?LinkID=615560
See [this post](https://aka.ms/Kjp2dz).
# Headers
```cpp
#include <DirectXMath.h>
#include <DirectXCollision.h>
#include <DirectXColors.h>
#include <DirectXPackedVector.h>
```
# Namespace
All the functions in the library are in the **DirectX** C++ namespace. The packed vector types and functions are in the **DirectX::PackedVector** C++ namespace.
```cpp
using namespace DirectX;
```
# Documentation
The DirectXMath library is documented on [Microsoft Docs](https://docs.microsoft.com/en-us/windows/desktop/dxmath/directxmath-portal).