Kaba struct Mesh ed

...

Syntax ed

struct Mesh
    var indices: i32[]
    var vertices: Vertex[]

    # constructors
    func mut __init__()
    func mut __init__(vertices: Vertex[], indices: i32[])

    # functions
    func bounding_box() -> Box

    # operators
    func mut __assign__(other: Mesh)     # Mesh = Mesh

Functions ed

func bounding_box() -> Box
...

Elements ed

var indices: i32[]
...

var vertices: Vertex[]
...