Michael is a user on octodon.social. You can follow them or interact with them if you have an account anywhere in the fediverse. If you don't, you can sign up here.
Michael @drjeats

mikescript progress report, this does what you might expect:

let Vec3 = {
new: fn (x, y, z) do {
x: x,
y: y,
z: z,
},
add: fn (a, b) do {
x: a.x + b.x,
y: a.y + b.y,
z: a.z + b.z,
},
}
let start = Vec3.new(3, 4, 5)
let end = Vec3.add(
start,
Vec3.new(5, 5, 5))

· Web · 0 · 1