remove comma

This commit is contained in:
Casper Lamboo
2018-02-19 18:02:57 +01:00
parent f032d8c267
commit 34a2b6cafc
2 changed files with 81 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export const add = (a, b) => ({
export const scale = (v, factor) => ({
x: v.x * factor,
y: v.y * factor,
z: v.z * factor,
z: v.z * factor
});
export const divide = (v, factor) => ({
x: v.x / factor,