@acransac/vtk.js
Version:
Visualization Toolkit for the Web
127 lines (101 loc) • 3.62 kB
JavaScript
import { mat3, mat4 } from 'gl-matrix';
import macro from 'vtk.js/Sources/macro';
import vtkViewNode from 'vtk.js/Sources/Rendering/SceneGraph/ViewNode';
// ----------------------------------------------------------------------------
// vtkOpenGLVolume methods
// ----------------------------------------------------------------------------
function vtkOpenGLVolume(publicAPI, model) {
// Set our className
model.classHierarchy.push('vtkOpenGLVolume');
// Builds myself.
publicAPI.buildPass = (prepass) => {
if (!model.renderable || !model.renderable.getVisibility()) {
return;
}
if (prepass) {
model.openGLRenderer = publicAPI.getFirstAncestorOfType(
'vtkOpenGLRenderer'
);
publicAPI.prepareNodes();
publicAPI.addMissingNode(model.renderable.getMapper());
publicAPI.removeUnusedNodes();
}
};
publicAPI.queryPass = (prepass, renderPass) => {
if (prepass) {
if (!model.renderable || !model.renderable.getVisibility()) {
return;
}
renderPass.incrementVolumeCount();
}
};
publicAPI.traverseVolumePass = (renderPass) => {
if (
!model.renderable ||
!model.renderable.getVisibility() ||
(model.openGLRenderer.getSelector() && !model.renderable.getPickable())
) {
return;
}
publicAPI.apply(renderPass, true);
model.children[0].traverse(renderPass);
publicAPI.apply(renderPass, false);
};
// Renders myself
publicAPI.volumePass = (prepass) => {
if (!model.renderable || !model.renderable.getVisibility()) {
return;
}
if (prepass) {
model.context = publicAPI
.getFirstAncestorOfType('vtkOpenGLRenderWindow')
.getContext();
model.context.depthMask(false);
} else {
model.context.depthMask(true);
}
};
publicAPI.getKeyMatrices = () => {
// has the actor changed?
if (model.renderable.getMTime() > model.keyMatrixTime.getMTime()) {
model.renderable.computeMatrix();
mat4.copy(model.MCWCMatrix, model.renderable.getMatrix());
mat4.transpose(model.MCWCMatrix, model.MCWCMatrix);
if (model.renderable.getIsIdentity()) {
mat3.identity(model.normalMatrix);
} else {
mat3.fromMat4(model.normalMatrix, model.MCWCMatrix);
mat3.invert(model.normalMatrix, model.normalMatrix);
}
model.keyMatrixTime.modified();
}
return { mcwc: model.MCWCMatrix, normalMatrix: model.normalMatrix };
};
}
// ----------------------------------------------------------------------------
// Object factory
// ----------------------------------------------------------------------------
const DEFAULT_VALUES = {
// context: null,
// keyMatrixTime: null,
// normalMatrix: null,
// MCWCMatrix: null,
};
// ----------------------------------------------------------------------------
export function extend(publicAPI, model, initialValues = {}) {
Object.assign(model, DEFAULT_VALUES, initialValues);
// Inheritance
vtkViewNode.extend(publicAPI, model, initialValues);
model.keyMatrixTime = {};
macro.obj(model.keyMatrixTime, { mtime: 0 });
model.normalMatrix = mat3.create();
model.MCWCMatrix = mat4.create();
// Build VTK API
macro.setGet(publicAPI, model, ['context']);
// Object methods
vtkOpenGLVolume(publicAPI, model);
}
// ----------------------------------------------------------------------------
export const newInstance = macro.newInstance(extend, 'vtkOpenGLVolume');
// ----------------------------------------------------------------------------
export default { newInstance, extend };