``` fun set(f: FloatArray) { x = f[0] ...
# getting-started
p
Copy code
fun set(f: FloatArray) {
        x = f[0]
        y = f[1]
    }
👍 1