Go array initialization

前端 未结 4 1840
面向向阳花
面向向阳花 2021-02-05 00:30
func identityMat4() [16]float {
    return {
        1, 0, 0, 0,
        0, 1, 0, 0,
        0, 0, 1, 0,
        0, 0, 0, 1 }
}

I hope you get the idea

4条回答
提交回复
热议问题