Hi BlackBird,
re:
> Yes, but it uses the "Projection method 3".
> In Europe we use the "Projection method 1".
> So the views are swapped.
You can modify the script to do this by finding line number 33 in make2D4Views.js which has this:
code:
var views = [ 'Top', '3D', 'Front', 'Right' ];
and change it to this instead:
code:
var views = [ 'Right', 'Front', '3D', 'Top' ];
- Michael
|