Kaba struct PointVertex ed

...

Syntax ed

struct PointVertex
    var col: Color
    var pos: vec3
    var radius: f32

    # constructors
    func mut __init__(pos: vec3, radius: f32, col: Color)

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

Elements ed

var col: Color
...

var pos: vec3
...

var radius: f32
...