How can I draw a "I" shaped face?

I have some point to description a “I” shape like this↓
Point1[400,0],
Point2[400,25],
Point3[206,25],
Point4[206,525],
Point5[400,525],
Point6[400,550],
Point7[0,550],
Point8[0,525],
Point9[194,525],
Point10[194,25],
Point11[0,25],
Point12[0,0]
I want to create this “I” shape by Mesh or other function.
But I have no idea to do this in Unity by C#.

p.s.:
In the Three.js can use .lineTo function create this shape.
Does Unity have any framework like Thress.js can support us to create geometry?

The Scripting API for Unity’s Mesh class and Mesh.triangles class tell you everything you need to know. You have your coordinates, convert them to Vector3s and fill the Vertex array (“newVertices”) with it. The Mesh.triangles page has a good example you can use as a template.

p.s. no :slight_smile: