InteractorStyleTrackballCamera

Methods

dollyByFactor

Dolly by factor.

Argument Type Required Description
renderer Yes the renderer
factor Yes factor

handleButton3D

Handles a 3D button event.

Argument Type Required Description
callData Yes event data

handleEndMouseWheel

Handles the end of a wheel event.

Argument Type Required Description
callData Yes event data

handleEndPan

Handles the end of a pan gesture.

Argument Type Required Description
callData Yes event data

handleEndPinch

Handles the end of a pinch gesture.

Argument Type Required Description
callData Yes event data

handleEndRotate

Handles the end of a rotate gesture.

Argument Type Required Description
callData Yes event data

handleLeftButtonPress

Handles a left button press event.

Argument Type Required Description
callData Yes event data

handleLeftButtonRelease

Handles a left button release event.

Argument Type Required Description
callData Yes event data

handleMouseDolly

Handles dolly with a mouse.

Argument Type Required Description
renderer Yes the renderer
position Yes the display position

handleMouseMove

Handles a mouse move.

Argument Type Required Description
callData Yes event data

handleMousePan

Handles pan with a mouse.

Argument Type Required Description
renderer Yes the renderer
position Yes the display position

handleMouseRotate

Handles rotate with a mouse.

Argument Type Required Description
renderer Yes the renderer
position Yes the display position

handleMouseSpin

Handles spin with a mouse.

Argument Type Required Description
renderer Yes the renderer
position Yes the display position

handleMouseWheel

Handles a wheel event.

Argument Type Required Description
callData Yes event data

handleMove3D

Handles a 3D move event.

Argument Type Required Description
ed Yes event data

handlePan

Handles a pan gesture.

Argument Type Required Description
callData Yes event data

handlePinch

Handles a pinch gesture.

Argument Type Required Description
callData Yes event data

handleRotate

Handles a rotate gesture.

Argument Type Required Description
callData Yes event data

handleStartMouseWheel

Handles the start of a wheel event.

Argument Type Required Description
callData Yes event data

handleStartPan

Handles the start of a pan gesture.

Argument Type Required Description
callData Yes event data

handleStartPinch

Handles the start of a pinch gesture.

Argument Type Required Description
callData Yes event data

handleStartRotate

Handles the start of a rotate gesture.

Argument Type Required Description
callData Yes event data

updateCameraPose

Update camera pose

Argument Type Required Description
ed Yes event data

Source

index.d.ts
import vtkInteractorStyle from '../../../Rendering/Core/InteractorStyle';
import vtkRenderer from '../../../Rendering/Core/Renderer';

export interface vtkInteractorStyleTrackballCamera extends vtkInteractorStyle {
/**
* Handles a mouse move.
* @param callData event data
*/
handleMouseMove(callData: unknown): void;

/**
* Handles a 3D button event.
* @param callData event data
*/
handleButton3D(ed: unknown): void;

/**
* Handles a 3D move event.
* @param ed event data
*/
handleMove3D(ed: unknown): void;

/**
* Update camera pose
* @param ed event data
*/
updateCameraPose(ed: unknown): void;

/**
* Handles a left button press event.
* @param callData event data
*/
handleLeftButtonPress(callData: unknown): void;

/**
* Handles a left button release event.
* @param callData event data
*/
handleLeftButtonRelease(callData: unknown): void;

/**
* Handles the start of a wheel event.
* @param callData event data
*/
handleStartMouseWheel(callData: unknown): void;

/**
* Handles the end of a wheel event.
* @param callData event data
*/
handleEndMouseWheel(callData: unknown): void;

/**
* Handles the start of a pinch gesture.
* @param callData event data
*/
handleStartPinch(callData: unknown): void;

/**
* Handles the end of a pinch gesture.
* @param callData event data
*/
handleEndPinch(callData: unknown): void;

/**
* Handles the start of a rotate gesture.
* @param callData event data
*/
handleStartRotate(callData: unknown): void;

/**
* Handles the end of a rotate gesture.
* @param callData event data
*/
handleEndRotate(callData: unknown): void;

/**
* Handles the start of a pan gesture.
* @param callData event data
*/
handleStartPan(callData: unknown): void;

/**
* Handles the end of a pan gesture.
* @param callData event data
*/
handleEndPan(callData: unknown): void;

/**
* Handles a pinch gesture.
* @param callData event data
*/
handlePinch(callData: unknown): void;

/**
* Handles a pan gesture.
* @param callData event data
*/
handlePan(callData: unknown): void;

/**
* Handles a rotate gesture.
* @param callData event data
*/
handleRotate(callData: unknown): void;

/**
* Handles rotate with a mouse.
* @param renderer the renderer
* @param position the display position
*/
handleMouseRotate(renderer: vtkRenderer, position: { x: number, y: number }): void;

/**
* Handles spin with a mouse.
* @param renderer the renderer
* @param position the display position
*/
handleMouseSpin(renderer: vtkRenderer, position: { x: number, y: number }): void;

/**
* Handles pan with a mouse.
* @param renderer the renderer
* @param position the display position
*/
handleMousePan(renderer: vtkRenderer, position: { x: number, y: number }): void;

/**
* Handles dolly with a mouse.
* @param renderer the renderer
* @param position the display position
*/
handleMouseDolly(renderer: vtkRenderer, position: { x: number, y: number }): void;

/**
* Handles a wheel event.
* @param callData event data
*/
handleMouseWheel(callData: unknown): void;

/**
* Dolly by factor.
* @param renderer the renderer
* @param factor factor
*/
dollyByFactor(renderer: vtkRenderer, factor: number): void;
}

export interface IInteractorStyleTrackballCameraInitialValues {
motionFactor: number;
zoomFactor: number;
}

export function newInstance(
initialValues?: IInteractorStyleTrackballCameraInitialValues
): vtkInteractorStyleTrackballCamera;


export function extend(
publicAPI: object,
model: object,
initialValues?: IInteractorStyleTrackballCameraInitialValues
): void;

export const vtkInteractorStyleTrackballCamera: {
newInstance: typeof newInstance;
extend: typeof extend;
}

export default vtkInteractorStyleTrackballCamera;
index.js
import macro from 'vtk.js/Sources/macros';
import vtkInteractorStyle from 'vtk.js/Sources/Rendering/Core/InteractorStyle';
import vtkInteractorStyleConstants from 'vtk.js/Sources/Rendering/Core/InteractorStyle/Constants';
import * as vtkMath from 'vtk.js/Sources/Common/Core/Math';
import {
Device,
Input,
} from 'vtk.js/Sources/Rendering/Core/RenderWindowInteractor/Constants';

const { States } = vtkInteractorStyleConstants;

/* eslint-disable no-lonely-if */

// ----------------------------------------------------------------------------
// vtkInteractorStyleTrackballCamera methods
// ----------------------------------------------------------------------------

function vtkInteractorStyleTrackballCamera(publicAPI, model) {
// Set our className
model.classHierarchy.push('vtkInteractorStyleTrackballCamera');

// Public API methods
publicAPI.handleMouseMove = (callData) => {
const pos = callData.position;
const renderer = callData.pokedRenderer;

switch (model.state) {
case States.IS_ROTATE:
publicAPI.handleMouseRotate(renderer, pos);
publicAPI.invokeInteractionEvent({ type: 'InteractionEvent' });
break;

case States.IS_PAN:
publicAPI.handleMousePan(renderer, pos);
publicAPI.invokeInteractionEvent({ type: 'InteractionEvent' });
break;

case States.IS_DOLLY:
publicAPI.handleMouseDolly(renderer, pos);
publicAPI.invokeInteractionEvent({ type: 'InteractionEvent' });
break;

case States.IS_SPIN:
publicAPI.handleMouseSpin(renderer, pos);
publicAPI.invokeInteractionEvent({ type: 'InteractionEvent' });
break;

default:
break;
}

model.previousPosition = pos;
};

//----------------------------------------------------------------------------
publicAPI.handleButton3D = (ed) => {
if (
ed &&
ed.pressed &&
ed.device === Device.RightController &&
(ed.input === Input.Trigger || ed.input === Input.TrackPad)
) {
publicAPI.startCameraPose();
return;
}
if (
ed &&
!ed.pressed &&
ed.device === Device.RightController &&
(ed.input === Input.Trigger || ed.input === Input.TrackPad) &&
model.state === States.IS_CAMERA_POSE
) {
publicAPI.endCameraPose();
// return;
}
};

publicAPI.handleMove3D = (ed) => {
switch (model.state) {
case States.IS_CAMERA_POSE:
publicAPI.updateCameraPose(ed);
break;
default:
}
};

publicAPI.updateCameraPose = (ed) => {
// move the world in the direction of the
// controller
const camera = ed.pokedRenderer.getActiveCamera();
const oldTrans = camera.getPhysicalTranslation();

// look at the y axis to determine how fast / what direction to move
const speed = 0.5; // ed.gamepad.axes[1];

// 0.05 meters / frame movement
const pscale = speed * 0.05 * camera.getPhysicalScale();

// convert orientation to world coordinate direction
const dir = camera.physicalOrientationToWorldDirection([
ed.orientation.x,
ed.orientation.y,
ed.orientation.z,
ed.orientation.w,
]);

camera.setPhysicalTranslation(
oldTrans[0] + dir[0] * pscale,
oldTrans[1] + dir[1] * pscale,
oldTrans[2] + dir[2] * pscale
);
};

//----------------------------------------------------------------------------
publicAPI.handleLeftButtonPress = (callData) => {
const pos = callData.position;
model.previousPosition = pos;

if (callData.shiftKey) {
if (callData.controlKey || callData.altKey) {
publicAPI.startDolly();
} else {
publicAPI.startPan();
}
} else {
if (callData.controlKey || callData.altKey) {
publicAPI.startSpin();
} else {
publicAPI.startRotate();
}
}
};

//--------------------------------------------------------------------------
publicAPI.handleLeftButtonRelease = () => {
switch (model.state) {
case States.IS_DOLLY:
publicAPI.endDolly();
break;
case States.IS_PAN:
publicAPI.endPan();
break;
case States.IS_SPIN:
publicAPI.endSpin();
break;
case States.IS_ROTATE:
publicAPI.endRotate();
break;

default:
break;
}
};

//----------------------------------------------------------------------------
publicAPI.handleStartMouseWheel = () => {
publicAPI.startDolly();
};

//--------------------------------------------------------------------------
publicAPI.handleEndMouseWheel = () => {
publicAPI.endDolly();
};

//----------------------------------------------------------------------------
publicAPI.handleStartPinch = (callData) => {
model.previousScale = callData.scale;
publicAPI.startDolly();
};

//--------------------------------------------------------------------------
publicAPI.handleEndPinch = () => {
publicAPI.endDolly();
};

//----------------------------------------------------------------------------
publicAPI.handleStartRotate = (callData) => {
model.previousRotation = callData.rotation;
publicAPI.startRotate();
};

//--------------------------------------------------------------------------
publicAPI.handleEndRotate = () => {
publicAPI.endRotate();
};

//----------------------------------------------------------------------------
publicAPI.handleStartPan = (callData) => {
model.previousTranslation = callData.translation;
publicAPI.startPan();
};

//--------------------------------------------------------------------------
publicAPI.handleEndPan = () => {
publicAPI.endPan();
};

//----------------------------------------------------------------------------
publicAPI.handlePinch = (callData) => {
publicAPI.dollyByFactor(
callData.pokedRenderer,
callData.scale / model.previousScale
);
model.previousScale = callData.scale;
};

//----------------------------------------------------------------------------
publicAPI.handlePan = (callData) => {
const camera = callData.pokedRenderer.getActiveCamera();

// Calculate the focal depth since we'll be using it a lot
let viewFocus = camera.getFocalPoint();

viewFocus = publicAPI.computeWorldToDisplay(
callData.pokedRenderer,
viewFocus[0],
viewFocus[1],
viewFocus[2]
);
const focalDepth = viewFocus[2];

const trans = callData.translation;
const lastTrans = model.previousTranslation;
const newPickPoint = publicAPI.computeDisplayToWorld(
callData.pokedRenderer,
viewFocus[0] + trans[0] - lastTrans[0],
viewFocus[1] + trans[1] - lastTrans[1],
focalDepth
);

// Has to recalc old mouse point since the viewport has moved,
// so can't move it outside the loop
const oldPickPoint = publicAPI.computeDisplayToWorld(
callData.pokedRenderer,
viewFocus[0],
viewFocus[1],
focalDepth
);

// Camera motion is reversed
const motionVector = [];
motionVector[0] = oldPickPoint[0] - newPickPoint[0];
motionVector[1] = oldPickPoint[1] - newPickPoint[1];
motionVector[2] = oldPickPoint[2] - newPickPoint[2];

viewFocus = camera.getFocalPoint();
const viewPoint = camera.getPosition();
camera.setFocalPoint(
motionVector[0] + viewFocus[0],
motionVector[1] + viewFocus[1],
motionVector[2] + viewFocus[2]
);

camera.setPosition(
motionVector[0] + viewPoint[0],
motionVector[1] + viewPoint[1],
motionVector[2] + viewPoint[2]
);

if (model._interactor.getLightFollowCamera()) {
callData.pokedRenderer.updateLightsGeometryToFollowCamera();
}

camera.orthogonalizeViewUp();

model.previousTranslation = callData.translation;
};

//----------------------------------------------------------------------------
publicAPI.handleRotate = (callData) => {
const camera = callData.pokedRenderer.getActiveCamera();
camera.roll(callData.rotation - model.previousRotation);
camera.orthogonalizeViewUp();
model.previousRotation = callData.rotation;
};

//--------------------------------------------------------------------------
publicAPI.handleMouseRotate = (renderer, position) => {
if (!model.previousPosition) {
return;
}

const rwi = model._interactor;

const dx = position.x - model.previousPosition.x;
const dy = position.y - model.previousPosition.y;

const size = rwi.getView().getViewportSize(renderer);

let deltaElevation = -0.1;
let deltaAzimuth = -0.1;
if (size[0] && size[1]) {
deltaElevation = -20.0 / size[1];
deltaAzimuth = -20.0 / size[0];
}

const rxf = dx * deltaAzimuth * model.motionFactor;
const ryf = dy * deltaElevation * model.motionFactor;

const camera = renderer.getActiveCamera();
if (!Number.isNaN(rxf) && !Number.isNaN(ryf)) {
camera.azimuth(rxf);
camera.elevation(ryf);
camera.orthogonalizeViewUp();
}

if (model.autoAdjustCameraClippingRange) {
renderer.resetCameraClippingRange();
}

if (rwi.getLightFollowCamera()) {
renderer.updateLightsGeometryToFollowCamera();
}
};

//--------------------------------------------------------------------------
publicAPI.handleMouseSpin = (renderer, position) => {
if (!model.previousPosition) {
return;
}

const rwi = model._interactor;
const camera = renderer.getActiveCamera();
const center = rwi.getView().getViewportCenter(renderer);

const oldAngle = vtkMath.degreesFromRadians(
Math.atan2(
model.previousPosition.y - center[1],
model.previousPosition.x - center[0]
)
);
const newAngle =
vtkMath.degreesFromRadians(
Math.atan2(position.y - center[1], position.x - center[0])
) - oldAngle;

if (!Number.isNaN(newAngle)) {
camera.roll(newAngle);
camera.orthogonalizeViewUp();
}
};

//--------------------------------------------------------------------------
publicAPI.handleMousePan = (renderer, position) => {
if (!model.previousPosition) {
return;
}

const camera = renderer.getActiveCamera();

// Calculate the focal depth since we'll be using it a lot
let viewFocus = camera.getFocalPoint();
viewFocus = publicAPI.computeWorldToDisplay(
renderer,
viewFocus[0],
viewFocus[1],
viewFocus[2]
);
const focalDepth = viewFocus[2];

const newPickPoint = publicAPI.computeDisplayToWorld(
renderer,
position.x,
position.y,
focalDepth
);

// Has to recalc old mouse point since the viewport has moved,
// so can't move it outside the loop
const oldPickPoint = publicAPI.computeDisplayToWorld(
renderer,
model.previousPosition.x,
model.previousPosition.y,
focalDepth
);

// Camera motion is reversed
const motionVector = [];
motionVector[0] = oldPickPoint[0] - newPickPoint[0];
motionVector[1] = oldPickPoint[1] - newPickPoint[1];
motionVector[2] = oldPickPoint[2] - newPickPoint[2];

viewFocus = camera.getFocalPoint();
const viewPoint = camera.getPosition();
camera.setFocalPoint(
motionVector[0] + viewFocus[0],
motionVector[1] + viewFocus[1],
motionVector[2] + viewFocus[2]
);

camera.setPosition(
motionVector[0] + viewPoint[0],
motionVector[1] + viewPoint[1],
motionVector[2] + viewPoint[2]
);

if (model._interactor.getLightFollowCamera()) {
renderer.updateLightsGeometryToFollowCamera();
}
};

//----------------------------------------------------------------------------
publicAPI.handleMouseDolly = (renderer, position) => {
if (!model.previousPosition) {
return;
}

const dy = position.y - model.previousPosition.y;
const rwi = model._interactor;
const center = rwi.getView().getViewportCenter(renderer);
const dyf = (model.motionFactor * dy) / center[1];

publicAPI.dollyByFactor(renderer, 1.1 ** dyf);
};

//----------------------------------------------------------------------------
publicAPI.handleMouseWheel = (callData) => {
const dyf = 1 - callData.spinY / model.zoomFactor;
publicAPI.dollyByFactor(callData.pokedRenderer, dyf);
};

//----------------------------------------------------------------------------
publicAPI.dollyByFactor = (renderer, factor) => {
if (Number.isNaN(factor)) {
return;
}

const camera = renderer.getActiveCamera();
if (camera.getParallelProjection()) {
camera.setParallelScale(camera.getParallelScale() / factor);
} else {
camera.dolly(factor);
if (model.autoAdjustCameraClippingRange) {
renderer.resetCameraClippingRange();
}
}

if (model._interactor.getLightFollowCamera()) {
renderer.updateLightsGeometryToFollowCamera();
}
};
}

// ----------------------------------------------------------------------------
// Object factory
// ----------------------------------------------------------------------------

const DEFAULT_VALUES = {
motionFactor: 10.0,
zoomFactor: 10.0,
};

// ----------------------------------------------------------------------------

export function extend(publicAPI, model, initialValues = {}) {
Object.assign(model, DEFAULT_VALUES, initialValues);

// Inheritance
vtkInteractorStyle.extend(publicAPI, model, initialValues);

// Create get-set macros
macro.setGet(publicAPI, model, ['motionFactor', 'zoomFactor']);

// For more macro methods, see "Sources/macros.js"

// Object specific methods
vtkInteractorStyleTrackballCamera(publicAPI, model);
}

// ----------------------------------------------------------------------------

export const newInstance = macro.newInstance(
extend,
'vtkInteractorStyleTrackballCamera'
);

// ----------------------------------------------------------------------------

export default { newInstance, extend };