Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

viewSet [-back] [-bottom] [-fitFactor float] [-front] [-home] [-leftSide] [-nextView] [-persp] [-previousView] [-rightSide] [-side] [-top] [camera]

viewSet is undoable, queryable, and NOT editable.

This command positions the camera to one of the pre-defined positions. If the fit flag is set in conjunction with persp, top, side, or front; the view is "fit" based on the list of selected objects (if there are any) or on all the objects if nothing is selected. If a camera is not specified, the camera in the active view will be used. If no flag is specified, the camera is set to the home position.

Return value

None

In query mode, return type is based on queried flag.

Related

camera, cameraView, dolly, listCameras, lookThru, orbit, roll, track, tumble, viewCamera, viewClipPlane, viewFit, viewHeadOn, viewLookAt, viewPlace

Flags

back, bottom, fitFactor, front, home, leftSide, nextView, persp, previousView, rightSide, side, top
Long name (short name) Argument types Properties
-persp(-p) create
Moves the camera to the persp position.
-top(-top) create
Moves the camera to the top position.
-bottom(-bo) create
Moves the camera to the bottom position.
-rightSide(-rs) create
Moves the camera to the right side position.
-leftSide(-ls) create
Moves the camera to the left side position.
-side(-s) create
Moves the camera to the (right) side position (deprecated).
-front(-f) create
Moves the camera to the front position.
-back(-b) create
Moves the camera to the back position.
-home(-h) create
Executes the camera's home attribute command. Before the string is executed, all occurances of "%camera" will be replaced by the camera's name. Use the camera command to set a camera's home command.
-previousView(-pv) createquery
Moves the camera to the previous position.
-nextView(-nv) createquery
Moves the camera to the next position. -fit Apply a viewFit after positioning camera to persp, top, side, or front.
-fitFactor(-ff) float create
Specifies how much of the view should be filled with the "fitted" items

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Create a new camera
string $cam[] = `camera`;
string $camShape = $cam[1];
// Set cameraShape1 to the persp position
viewSet -p $camShape;
// Set the camera in the active view to the top position
viewSet -t;