!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / Statoscope / Statoscope / BarVertex.cs
blob4a5f39aebbda395d1eec3f0ae069fcc5ee3b5bfe
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Text;
8 namespace Statoscope
10 [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Explicit)]
11 struct BarVertex
13 public BarVertex(float x, float y, float z, uint color)
15 this.x = x;
16 this.y = y;
17 this.z = z;
18 this.color = color;
21 [System.Runtime.InteropServices.FieldOffset(0)]
22 public float x;
23 [System.Runtime.InteropServices.FieldOffset(4)]
24 public float y;
25 [System.Runtime.InteropServices.FieldOffset(8)]
26 public float z;
27 [System.Runtime.InteropServices.FieldOffset(12)]
28 public uint color;