The Following script are from resources section
Install those scripts and change 6.0 for your Number 45.0 or another number.
RotateView – this allows rotating the 3D view with the arrow keys. To do this, use these keyboard shortcuts:
UpArrow script:moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'up', 6.0 );
DownArrow script:moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'down', 6.0 );
LeftArrow script:moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'left', 6.0 );
RightArrow script:moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'right', 6.0 );
In the next script replace 30 by 0 and 45 by 0, this will help you set your view angle to Zero and then rotate with arrows .
Set Isometric
I script:var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); vp.projection = 'Parallel'; vp.setAngles( 90 - (Math.asin(Math.tan(30 * Math.PI/180)) * 180/Math.PI), 45 );
|