Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | 1x | import macro from 'vtk.js/Sources/macros'; import * as vtkMath from 'vtk.js/Sources/Common/Core/Math'; import vtkActor from 'vtk.js/Sources/Rendering/Core/Actor'; import vtkCamera from 'vtk.js/Sources/Rendering/Core/Camera'; import vtkDataArray from 'vtk.js/Sources/Common/Core/DataArray'; import vtkPolyData from 'vtk.js/Sources/Common/DataModel/PolyData'; import vtkMapper from 'vtk.js/Sources/Rendering/Core/Mapper'; import vtkCellArray from 'vtk.js/Sources/Common/Core/CellArray'; import vtkTransform from 'vtk.js/Sources/Common/Transform/Transform'; import GLTFParser from 'vtk.js/Sources/IO/Geometry/GLTFImporter/Parser'; import { ALPHA_MODE, MODES, SEMANTIC_ATTRIBUTE_MAP, } from 'vtk.js/Sources/IO/Geometry/GLTFImporter/Constants'; import { createVTKTextureFromGLTFTexture, loadImage, } from 'vtk.js/Sources/IO/Geometry/GLTFImporter/Utils'; import { handleKHRDracoMeshCompression, handleKHRLightsPunctual, handleKHRMaterialsIor, handleKHRMaterialsSpecular, handleKHRMaterialsUnlit, handleKHRMaterialsVariants, } from 'vtk.js/Sources/IO/Geometry/GLTFImporter/Extensions'; import { mat4, quat, vec3 } from 'gl-matrix'; const { vtkWarningMacro, vtkDebugMacro } = macro; /** * Parses a GLTF objects * @param {Object} gltf - The GLTF object to parse * @returns {glTF} The parsed GLTF object */ async function parseGLTF(gltf, options) { const parser = new GLTFParser(gltf, options); const tree = await parser.parse(); return tree; } /** * Creates VTK polydata from a GLTF mesh * @param {GLTFMesh} mesh - The GLTF mesh * @returns {vtkPolyData} The created VTK polydata */ async function createPolyDataFromGLTFMesh(mesh) { const primitive = mesh.primitives[0]; // For simplicity, we'll just use the first primitive if (!primitive || !primitive.attributes) { vtkWarningMacro('Mesh has no position data, skipping'); return null; } const mode = primitive.mode; if (primitive.extensions?.KHR_draco_mesh_compression) { return handleKHRDracoMeshCompression( primitive.extensions.KHR_draco_mesh_compression ); } const polyData = vtkPolyData.newInstance(); const cells = vtkCellArray.newInstance(); const pointData = polyData.getPointData(); const attrs = Object.entries(primitive.attributes); attrs.forEach(async ([attributeName, accessor]) => { switch (attributeName) { case SEMANTIC_ATTRIBUTE_MAP.POSITION: { const position = primitive.attributes.position.value; polyData .getPoints() .setData(position, primitive.attributes.position.component); break; } case SEMANTIC_ATTRIBUTE_MAP.NORMAL: { const normals = primitive.attributes.normal.value; pointData.setNormals( vtkDataArray.newInstance({ name: 'Normals', values: normals, numberOfComponents: primitive.attributes.normal.components, }) ); break; } case SEMANTIC_ATTRIBUTE_MAP.COLOR_0: { const color = primitive.attributes.color.value; pointData.setScalars( vtkDataArray.newInstance({ name: 'Scalars', values: color, numberOfComponents: primitive.attributes.color.components, }) ); break; } case SEMANTIC_ATTRIBUTE_MAP.TEXCOORD_0: { const tcoords0 = primitive.attributes.texcoord0.value; const da = vtkDataArray.newInstance({ name: 'TEXCOORD_0', values: tcoords0, numberOfComponents: primitive.attributes.texcoord0.components, }); pointData.addArray(da); pointData.setActiveTCoords(da.getName()); break; } case SEMANTIC_ATTRIBUTE_MAP.TEXCOORD_1: { const tcoords = primitive.attributes.texcoord1.value; const dac = vtkDataArray.newInstance({ name: 'TEXCOORD_1', values: tcoords, numberOfComponents: primitive.attributes.texcoord1.components, }); pointData.addArray(dac); break; } case SEMANTIC_ATTRIBUTE_MAP.TANGENT: { const tangent = primitive.attributes.tangent.value; const dat = vtkDataArray.newInstance({ name: 'Tangents', values: tangent, numberOfComponents: primitive.attributes.tangent.components, }); pointData.addArray(dat); break; } default: vtkWarningMacro(`Unhandled attribute: ${attributeName}`); } }); // Handle indices if available if (primitive.indices !== undefined) { const indices = primitive.indices.value; const nCells = indices.length - 2; switch (mode) { case MODES.GL_LINE_STRIP: case MODES.GL_TRIANGLE_STRIP: case MODES.GL_LINE_LOOP: vtkWarningMacro('GL_LINE_LOOP not implemented'); break; default: cells.resize((4 * indices.length) / 3); for (let cellId = 0; cellId < nCells; cellId += 3) { const cell = indices.slice(cellId, cellId + 3); cells.insertNextCell(cell); } } } switch (mode) { case MODES.GL_TRIANGLES: case MODES.GL_TRIANGLE_FAN: polyData.setPolys(cells); break; case MODES.GL_LINES: case MODES.GL_LINE_STRIP: case MODES.GL_LINE_LOOP: polyData.setLines(cells); break; case MODES.GL_POINTS: polyData.setVerts(cells); break; case MODES.GL_TRIANGLE_STRIP: polyData.setStrips(cells); break; default: vtkWarningMacro('Invalid primitive draw mode. Ignoring connectivity.'); } return polyData; } /** * Creates a VTK property from a GLTF material * @param {*} model - The vtk model object * @param {GLTFMaterial} material - The GLTF material * @param {vtkActor} actor - The VTK actor */ async function createPropertyFromGLTFMaterial(model, material, actor) { let metallicFactor = 1.0; let roughnessFactor = 1.0; const emissiveFactor = material.emissiveFactor; const property = actor.getProperty(); const pbr = material.pbrMetallicRoughness; if (pbr !== undefined) { if ( !pbr?.metallicFactor || pbr?.metallicFactor <= 0 || pbr?.metallicFactor >= 1 ) { vtkWarningMacro( 'Invalid material.pbrMetallicRoughness.metallicFactor value. Using default value instead.' ); } else metallicFactor = pbr.metallicFactor; if ( !pbr?.roughnessFactor || pbr?.roughnessFactor <= 0 || pbr?.roughnessFactor >= 1 ) { vtkWarningMacro( 'Invalid material.pbrMetallicRoughness.roughnessFactor value. Using default value instead.' ); } else roughnessFactor = pbr.roughnessFactor; const color = pbr.baseColorFactor; if (color !== undefined) { property.setDiffuseColor(color[0], color[1], color[2]); property.setOpacity(color[3]); } property.setMetallic(metallicFactor); property.setRoughness(roughnessFactor); property.setEmission(emissiveFactor); if (pbr.baseColorTexture) { const extensions = pbr.baseColorTexture.extensions; const tex = pbr.baseColorTexture.texture; if (tex.extensions !== undefined) { const extensionsNames = Object.keys(tex.extensions); extensionsNames.forEach((extensionName) => { // TODO: Handle KHR_texture_basisu extension // const extension = tex.extensions[extensionName]; switch (extensionName) { default: vtkWarningMacro(`Unhandled extension: ${extensionName}`); } }); } const sampler = tex.sampler; const image = await loadImage(tex.source); const diffuseTex = createVTKTextureFromGLTFTexture( image, sampler, extensions ); // FIXME: Workaround for textures not showing up in WebGL const viewAPI = model.renderer.getRenderWindow(); const isWebGL = viewAPI.getViews()[0].isA('vtkOpenGLRenderWindow'); if (isWebGL) { actor.addTexture(diffuseTex); } else { property.setDiffuseTexture(diffuseTex); } } if (pbr.metallicRoughnessTexture) { const extensions = pbr.metallicRoughnessTexture.extensions; const tex = pbr.metallicRoughnessTexture.texture; const sampler = tex.sampler; const metallicImage = await loadImage(tex.source, 'b'); const metallicTex = createVTKTextureFromGLTFTexture( metallicImage, sampler, extensions ); property.setMetallicTexture(metallicTex); const roughnessImage = await loadImage(tex.source, 'g'); const roughnessTex = createVTKTextureFromGLTFTexture( roughnessImage, sampler, extensions ); property.setRoughnessTexture(roughnessTex); } // Handle ambient occlusion texture (occlusionTexture) if (material.occlusionTexture) { const extensions = material.occlusionTexture.extensions; const tex = material.occlusionTexture.texture; const sampler = tex.sampler; const aoImage = await loadImage(tex.source, 'r'); const aoTex = createVTKTextureFromGLTFTexture( aoImage, sampler, extensions ); property.setAmbientOcclusionTexture(aoTex); } // Handle emissive texture (emissiveTexture) if (material.emissiveTexture) { const extensions = material.emissiveTexture.extensions; const tex = material.emissiveTexture.texture; const sampler = tex.sampler; const emissiveImage = await loadImage(tex.source); const emissiveTex = createVTKTextureFromGLTFTexture( emissiveImage, sampler, extensions ); property.setEmissionTexture(emissiveTex); // Handle mutiple Uvs if (material.emissiveTexture.texCoord !== undefined) { const pd = actor.getMapper().getInputData().getPointData(); pd.setActiveTCoords(`TEXCOORD_${material.emissiveTexture.texCoord}`); } } // Handle normal texture (normalTexture) if (material.normalTexture) { const extensions = material.normalTexture.extensions; const tex = material.normalTexture.texture; const sampler = tex.sampler; const normalImage = await loadImage(tex.source); const normalTex = createVTKTextureFromGLTFTexture( normalImage, sampler, extensions ); property.setNormalTexture(normalTex); if (material.normalTexture.scale !== undefined) { property.setNormalStrength(material.normalTexture.scale); } } } // Material extensions if (material.extensions !== undefined) { const extensionsNames = Object.keys(material.extensions); extensionsNames.forEach((extensionName) => { const extension = material.extensions[extensionName]; switch (extensionName) { case 'KHR_materials_unlit': handleKHRMaterialsUnlit(extension, property); break; case 'KHR_materials_ior': handleKHRMaterialsIor(extension, property); break; case 'KHR_materials_specular': handleKHRMaterialsSpecular(extension, property); break; default: vtkWarningMacro(`Unhandled extension: ${extensionName}`); } }); } if (material.alphaMode !== ALPHA_MODE.OPAQUE) { actor.setForceTranslucent(true); } property.setBackfaceCulling(!material.doubleSided); } /** * Handles primitive extensions * @param {*} extensions The extensions object * @param {*} model The vtk model object * @param {GLTFNode} node The GLTF node */ function handlePrimitiveExtensions(extensions, model, node) { const extensionsNames = Object.keys(extensions); extensionsNames.forEach((extensionName) => { const extension = extensions[extensionName]; switch (extensionName) { case 'KHR_materials_variants': model.variantMappings.set(node.id, extension.mappings); break; default: vtkWarningMacro(`Unhandled extension: ${extensionName}`); } }); } /** * Creates a VTK actor from a GLTF mesh * @param {GLTFMesh} mesh - The GLTF mesh * @returns {vtkActor} The created VTK actor */ async function createActorFromGTLFNode(model, node, worldMatrix) { const actor = vtkActor.newInstance(); const mapper = vtkMapper.newInstance(); mapper.setColorModeToDirectScalars(); actor.setMapper(mapper); actor.setUserMatrix(worldMatrix); if (node.mesh !== undefined) { const polyData = await createPolyDataFromGLTFMesh(node.mesh); mapper.setInputData(polyData); const primitive = node.mesh.primitives[0]; // the first one for now // Support for materials if (primitive.material !== undefined) { await createPropertyFromGLTFMaterial(model, primitive.material, actor); } if (primitive.extensions !== undefined) { handlePrimitiveExtensions(primitive.extensions, model, node); } } else { const polyData = vtkPolyData.newInstance(); mapper.setInputData(polyData); } return actor; } /** * * @param {GLTFAnimation} animation * @returns */ function createGLTFAnimation(animation) { vtkDebugMacro('Creating animation:', animation); return { name: animation.name, channels: animation.channels, samplers: animation.samplers, getChannelByTargetNode(nodeIndex) { return this.channels.filter( (channel) => channel.target.node === nodeIndex ); }, }; } /** * Gets the transformation matrix for a GLTF node * @param {GLTFNode} node - The GLTF node * @returns {mat4} The transformation matrix */ function getTransformationMatrix(node) { // TRS const translation = node.translation ?? vec3.create(); const rotation = node.rotation ?? quat.create(); const scale = node.scale ?? vec3.fromValues(1.0, 1.0, 1.0); const matrix = node.matrix !== undefined ? mat4.clone(node.matrix) : mat4.fromRotationTranslationScale( mat4.create(), rotation, translation, scale ); return matrix; } /** * Processes a GLTF node * @param {GLTFnode} node - The GLTF node * @param {object} model The model object * @param {vtkActor} parentActor The parent actor * @param {mat4} parentMatrix The parent matrix */ async function processNode( node, model, parentActor = null, parentMatrix = mat4.create() ) { node.transform = getTransformationMatrix(node); const worldMatrix = mat4.multiply( mat4.create(), parentMatrix, node.transform ); // Create actor for the current node const actor = await createActorFromGTLFNode(model, node, worldMatrix); if (actor) { actor.setUserMatrix(worldMatrix); if (parentActor) { actor.setParentProp(parentActor); } model.actors.set(node.id, actor); } // Handle KHRLightsPunctual extension if (node.extensions?.KHR_lights_punctual) { handleKHRLightsPunctual( node.extensions.KHR_lights_punctual, node.transform, model ); } if ( node.children && Array.isArray(node.children) && node.children.length > 0 ) { await Promise.all( node.children.map(async (child) => { const parent = model.actors.get(node.id); await processNode(child, model, parent, worldMatrix); }) ); } } /** * Creates VTK actors from a GLTF object * @param {glTF} glTF - The GLTF object * @param {number} sceneId - The scene index to create actors for * @returns {vtkActor[]} The created VTK actors */ async function createVTKObjects(model) { model.animations = model.glTFTree.animations?.map(createGLTFAnimation); const extensionsNames = Object.keys(model.glTFTree?.extensions || []); extensionsNames.forEach((extensionName) => { const extension = model.glTFTree.extensions[extensionName]; switch (extensionName) { case 'KHR_materials_variants': handleKHRMaterialsVariants(extension, model); break; case 'KHR_draco_mesh_compression': break; default: vtkWarningMacro(`Unhandled extension: ${extensionName}`); } }); // Get the sceneId to process const sceneId = model.sceneId ?? model.glTFTree.scene; if (model.glTFTree.scenes?.length && model.glTFTree.scenes[sceneId]?.nodes) { await Promise.all( model.glTFTree.scenes[sceneId].nodes.map(async (node) => { if (node) { await processNode(node, model); } else { vtkWarningMacro(`Node not found in glTF.nodes`); } }) ); } else { vtkWarningMacro('No valid scenes found in the glTF data'); } } /** * Sets up the camera for a vtk renderer based on the bounds of the given actors. * * @param {GLTCamera} camera - The GLTF camera object */ function GLTFCameraToVTKCamera(glTFCamera) { const camera = vtkCamera.newInstance(); if (glTFCamera.type === 'perspective') { const { yfov, znear, zfar } = glTFCamera.perspective; camera.setClippingRange(znear, zfar); camera.setParallelProjection(false); camera.setViewAngle(vtkMath.degreesFromRadians(yfov)); } else if (glTFCamera.type === 'orthographic') { const { ymag, znear, zfar } = glTFCamera.orthographic; camera.setClippingRange(znear, zfar); camera.setParallelProjection(true); camera.setParallelScale(ymag); } else { throw new Error('Unsupported camera type'); } return camera; } /** * * @param {vtkCamera} camera * @param {*} transformMatrix */ function applyTransformToCamera(camera, transformMatrix) { if (!camera || !transformMatrix) { return; } // At identity, camera position is origin, +y up, -z view direction const position = [0, 0, 0]; const viewUp = [0, 1, 0]; const focus = [0, 0, -1]; const t = vtkTransform.newInstance(); t.setMatrix(transformMatrix); // Transform position t.transformPoint(position, position); t.transformPoints(viewUp, viewUp); t.transformPoints(focus, focus); focus[0] += position[0]; focus[1] += position[1]; focus[2] += position[2]; // Apply the transformed values to the camera camera.setPosition(position); camera.setFocalPoint(focus); camera.setViewUp(viewUp); } export { applyTransformToCamera, createPropertyFromGLTFMaterial, parseGLTF, createVTKObjects, GLTFCameraToVTKCamera, }; |