Open davesmith00000 opened 1 year ago
Example that does not compile correctly:
def foo(uv: vec2, p: vec2): Float = val v = (uv - (p - vec2(0.0f, 0.5f))).y v
But you can fix it by doing something like:
def foo(uv: vec2, p: vec2): Float = val v = uv - (p - vec2(0.0f, 0.5f)) v.y
Example that does not compile correctly:
But you can fix it by doing something like: