var obj = {
gooXY: function() { console.log.apply(console, arguments); }
};
obj.goo = function(radius, incline) {
var point = fn(radius, incline);
this.gooXY(point.x, point.y);
// Сама функция, которая вычисляет координаты в зависимости от радиуса и наклона
function fn(r, t) {
t = 90 - t;
return {
x: r * Math.cos(Math.PI * t / 180),
y: r * Math.sin(Math.PI * t / 180)
}
}
};
obj.goo(50, 45);