chore: setup linting
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
export const setXYZXYZ = (array: number[], location: number, x: number, y: number, z: number) => {
|
||||
array[location + 0] = x
|
||||
array[location + 1] = y
|
||||
array[location + 2] = z
|
||||
array[location + 0] = x;
|
||||
array[location + 1] = y;
|
||||
array[location + 2] = z;
|
||||
|
||||
array[location + 3] = x
|
||||
array[location + 4] = y
|
||||
array[location + 5] = z
|
||||
}
|
||||
array[location + 3] = x;
|
||||
array[location + 4] = y;
|
||||
array[location + 5] = z;
|
||||
};
|
||||
|
||||
export const setXY = (array: number[], location: number, x: number, y: number) => {
|
||||
array[location + 0] = x
|
||||
array[location + 1] = y
|
||||
}
|
||||
array[location + 0] = x;
|
||||
array[location + 1] = y;
|
||||
};
|
||||
|
||||
export const setXYZ = (array: number[], location: number, x: number, y: number, z: number) => {
|
||||
array[location + 0] = x
|
||||
array[location + 1] = y
|
||||
array[location + 2] = z
|
||||
}
|
||||
array[location + 0] = x;
|
||||
array[location + 1] = y;
|
||||
array[location + 2] = z;
|
||||
};
|
||||
|
||||
export const setXYZW = (
|
||||
array: number[],
|
||||
@@ -27,8 +27,8 @@ export const setXYZW = (
|
||||
z: number,
|
||||
w: number
|
||||
) => {
|
||||
array[location + 0] = x
|
||||
array[location + 1] = y
|
||||
array[location + 2] = z
|
||||
array[location + 3] = w
|
||||
}
|
||||
array[location + 0] = x;
|
||||
array[location + 1] = y;
|
||||
array[location + 2] = z;
|
||||
array[location + 3] = w;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user