Hello everyone, so recently I made a spider graph chart for a redditor, and fiddling around with the mathematic operators I quickly realised there isnt any way to do trigonometry. Is there a reason for that ?
I know it’s possible to get a good approximation of sinus with multiplication and division only (see this article, and that one for a CSS only solution) but these operators are really easy to add :
exports.cos= makeNumericBinaryOperator(
function(a) {return Math.cos(a)}
);
exports.sin= makeNumericBinaryOperator(
function(a) {return Math.sin(a)}
);
I added the other trigonometric operator here : TW-tips — useful information collected from the tiddlywiki community
Am I missing something ?