A [Resource] that contains vertex-array based geometry. Mesh is a type of [Resource] that contains vertex-array based geometry, divided in [i]surfaces[/i]. Each surface contains a completely separate array and a material used to draw it. Design wise, a mesh with multiple surfaces is preferred to a single surface, because objects created in 3D editing software commonly contain multiple materials. Calculate a [ConvexPolygonShape] from the mesh. Calculate an outline mesh at a defined offset (margin) from the original mesh. Note: Typically returns the vertices in reverse order (e.g. clockwise to anti-clockwise). Calculate a [ConcavePolygonShape] from the mesh. Generate a [TriangleMesh] from the mesh. Returns all the vertices that make up the faces of the mesh. Each three vertices represent one triangle. Render array as points (one vertex equals one point). Render array as lines (every two vertices a line is created). Render array as line strip. Render array as line loop (like line strip, but closed). Render array as triangles (every three vertices a triangle is created). Render array as triangle strips. Render array as triangle fans.