Vertex<float> vertex = { 0.3, 0.2, 0.1 };
123456
class Vertex { T x; T y; T z; };
Vertex<float> vertex { 0.3, 0.2, 0.1 };