It'll be great to be able to do the following: ```csharp float2 scale = float2(2f, 3f); float2x2 transform = diag(scale); // Yields: // 2f 0f // 0f 3f ```
It'll be great to be able to do the following: