func ReadPosition(doc *gltf.Document, acr *gltf.Accessor, buffer [][3]float32) ([][3]float32, error) {
    if acr.ComponentType != gltf.ComponentFloat {
        return nil, errComponentType(acr.ComponentType)
    }
    if acr.Type != gltf.AccessorVec3 {