generated from erangel1/generic-template
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
const convertJchToJab = ({ j, c, h, alpha }) => {
|
|
let res = {
|
|
mode: 'jab',
|
|
j,
|
|
a: c ? c * Math.cos((h / 180) * Math.PI) : 0,
|
|
b: c ? c * Math.sin((h / 180) * Math.PI) : 0
|
|
};
|
|
if (alpha !== undefined) res.alpha = alpha;
|
|
return res;
|
|
};
|
|
|
|
export default convertJchToJab;
|