абстрактный пример
window.onload = function() {
var ctx = document.getElementById('canvas').getContext('2d'),
array = [[0, 0], [100, 0], [0, 100]], /* предопределенные координаты */
forma = document.forma.elements, /* ссылка на <input type="radio" name="radio" /> - 3 элемента */
i = forma.length;
/*...*/
while(i--) {
forma[i].onchange = function(i) {
return function() {
ctx.translate(array[i]); // тут меняется положение
/*...*/
};
}(i);
}
};