Red on all 3 axis.

This commit is contained in:
jaynus 2015-05-13 21:19:12 -07:00
parent c0678927e3
commit 4a41f8b9e2

View File

@ -84,6 +84,15 @@ namespace ace {
const XMVECTORF32 v1 = { 0.f, 100.f, 0.f };
const XMVECTORF32 v2 = { 0.f, -100.f, 0.f };
_Batch->DrawLine(VertexPositionColor(v1, Colors::Red), VertexPositionColor(v2, Colors::Red));
const XMVECTORF32 v3 = { 100.f, 0.f, 0.f };
const XMVECTORF32 v4 = { -100.f, 0.f, 0.f };
_Batch->DrawLine(VertexPositionColor(v3, Colors::Red), VertexPositionColor(v4, Colors::Red));
const XMVECTORF32 v5 = { 0.f, 0.f, 100.f };
const XMVECTORF32 v6 = { 0.f, -0.f, -100.f };
_Batch->DrawLine(VertexPositionColor(v5, Colors::Red), VertexPositionColor(v6, Colors::Red));
_Batch->End();
if (_active_vehicle) {