Move Transform Offset like in rhino

hi Scriptgods

Humble bow for your services

well can we move rotate and scale offset in viewport itself by clicking the xyz arrows and directly feed new coordinates in the viewport itself

like in rhino

i have attached pics for the better understanding of my point

thanks

viki

AttachmentSize
screenshot_5.png232.9 KB
screenshot_22.png231.32 KB
screenshot_23.png225.11 KB
screenshot_24.png232.04 KB
screenshot_25.png225.57 KB
screenshot_26.png179.2 KB
screenshot_27.png177.66 KB
screenshot_28.png165.57 KB

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
SandraMiller's picture

3D scripts and all RINO

3D scripts and all RINO products are collected for the fixers for the individuals. The chapter of the board of the RINO and best proofreading services is implied for the target for al themes for the field. Portal is done for all shows for the reforms for humans.

miauu's picture

.

There is an Easy Move script available, but it not works the same way. Very similar, but not the same.

https://www.youtube.com/watch?v=mQynlz3494g

https://www.youtube.com/watch?v=Jk-mhYGAjsw

The last script from this pack: http://miauumaxscript.blogspot.bg/p/miauus-script-pack-vol2.html

vikirecon's picture

@miauu :)

hi Miauu

thanks for noticing my post and thanks for all the help you had provided

i knew every script of yours ;) and they are fantastic but i am very peculiar about this because i shifted from rhino to 3dsmax and this tool is called gimbal in rhino its so easy to model things in rhino because of its intuitiveness

can u make a script like this i am willing to pay sir

thanks

and can i ask a favour from you regarding this script

callbacks.removeScripts id:#callView
fn userToPerspective =
(
if viewport.getType() == #view_iso_user do
(
viewport.setType #view_persp_user
max tool zoomextents all

)
)
callbacks.addScript #viewportChange "userToPerspective()" id:#callView

its about Rotating into Perspective View

but after rotating one has to zoom extent by using hotkey

what i want is rotate into perspective view and it automatically zoom extent

thanks i know its not related but i know you help

thanks again

viki

miauu's picture

.

About the Gimbal in Rhino - this tool works all the time(I mean each time when you click an arrow of the gizmo the textbox where you can enter values apperas) or it have to be run from a hotkey?
If you want you can send me mail at [email protected]

About the userToPerspective script. As it is now there is no problems when the Perspective view is rotated. Try this:

(
	global userToPerspective
	callbacks.removeScripts id:#callView
	fn userToPerspective =
	(
		if viewport.getType() == #view_iso_user do
		(
			viewport.setType #view_persp_user
			max tool zoomextents all
		)
		if viewport.getType() == #view_persp_user do
		(
			max tool zoomextents all
		)
	)
	callbacks.addScript #viewportChange "userToPerspective()" id:#callView
)

When you rotate the Perspective view zoom extend will be executed automatically. The same will happe when you use the mouse wheel to zoom in and zoom out.

vikirecon's picture

user To Perspective View

hi miauu

thanks very much for the help i have PM you about the gimbal tool

and about user To Perspective View thankyou again this is a massive help

but there is one problem firstly i dont want zoom in and zoom out to be used in this script

secondely i want script to deactivate in perspective view :) means it zoom extent only once and then script should deactivate itself and work only when we are in userorthographic view and changes view to perspective view

thanks again

viki

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.