because I am dealing with this ``` fun getSpher...
# getting-started
e
because I am dealing with this
Copy code
fun getSphereOrbitPos(modelMatrix: MatrixStack, ..): Vec3 {
        modelMatrix run {
            ..
            return (top() * Vec4(0.0f, 0.0f, 0.0f, 1.0f)).toVec3() // possible?
        }
    }
I'd like to return the intermediate
result
which is only available inside the
run{ }