You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export default function (array){
|
|
var out = {
|
|
x: array[0],
|
|
y: array[1]
|
|
};
|
|
if (array.length>2) {
|
|
out.z = array[2];
|
|
}
|
|
if (array.length>3) {
|
|
out.m = array[3];
|
|
}
|
|
return out;
|
|
} |