Paste #iNp -- näytä pelkkänä tekstinä -- uusi tämän pohjalta
1 2 3 4 5 6 7 8 | function vector.normalize(v) local l = vector.length(v) if l == 0 then return vector.new(0,0,0) else return vector.divide(v, vector.length(v)) end end |
Paste #iNp -- näytä pelkkänä tekstinä -- uusi tämän pohjalta
1 2 3 4 5 6 7 8 | function vector.normalize(v) local l = vector.length(v) if l == 0 then return vector.new(0,0,0) else return vector.divide(v, vector.length(v)) end end |