CSS3DObject 分子公式demo 实现

2024-03-17 05:44

本文主要是介绍CSS3DObject 分子公式demo 实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

CSS3DRenderer, CSS3DObject, CSS3DSprite API 使用方式详解

<!DOCTYPE html>
<html><head><title>three.js css3d - molecules</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"><link type="text/css" rel="stylesheet" href="main.css"><style>body {background-color: #050505;background: radial-gradient(ellipse at center,  rgba(43,45,48,1) 0%,rgba(0,0,0,1) 100%);}.bond {width: 5px;height: 10px;background: #eee;display: block;}</style></head><body><div id="container"></div><div id="info"><a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> css3d - molecules</div><script type="importmap">{"imports": {"three": "../build/three.module.js","three/addons/": "./jsm/"}}</script><script type="module">import * as THREE from 'three';import { TrackballControls } from 'three/addons/controls/TrackballControls.js';import { PDBLoader } from 'three/addons/loaders/PDBLoader.js';import { CSS3DRenderer, CSS3DObject, CSS3DSprite } from 'three/addons/renderers/CSS3DRenderer.js';import { GUI } from 'three/addons/libs/lil-gui.module.min.js';let camera, scene, renderer;let controls;let root;const objects = [];const tmpVec1 = new THREE.Vector3();const tmpVec2 = new THREE.Vector3();const tmpVec3 = new THREE.Vector3();const tmpVec4 = new THREE.Vector3();const offset = new THREE.Vector3();const VIZ_TYPE = {'Atoms': 0,'Bonds': 1,'Atoms + Bonds': 2};const MOLECULES = {'Ethanol': 'ethanol.pdb','Aspirin': 'aspirin.pdb','Caffeine': 'caffeine.pdb','Nicotine': 'nicotine.pdb','LSD': 'lsd.pdb','Cocaine': 'cocaine.pdb','Cholesterol': 'cholesterol.pdb','Lycopene': 'lycopene.pdb','Glucose': 'glucose.pdb','Aluminium oxide': 'Al2O3.pdb','Cubane': 'cubane.pdb','Copper': 'cu.pdb','Fluorite': 'caf2.pdb','Salt': 'nacl.pdb','YBCO superconductor': 'ybco.pdb','Buckyball': 'buckyball.pdb',// 'Diamond': 'diamond.pdb','Graphite': 'graphite.pdb'};const params = {vizType: 2,molecule: 'caffeine.pdb'};const loader = new PDBLoader();const colorSpriteMap = {};const baseSprite = document.createElement( 'img' );init();animate();function init() {camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 5000 );camera.position.z = 1000;scene = new THREE.Scene();root = new THREE.Object3D();scene.add( root );//renderer = new CSS3DRenderer();renderer.setSize( window.innerWidth, window.innerHeight );document.getElementById( 'container' ).appendChild( renderer.domElement );//controls = new TrackballControls( camera, renderer.domElement );controls.rotateSpeed = 0.5;//baseSprite.onload = function () {loadMolecule( params.molecule );};baseSprite.src = 'textures/sprites/ball.png';//window.addEventListener( 'resize', onWindowResize );//const gui = new GUI();gui.add( params, 'vizType', VIZ_TYPE ).onChange( changeVizType );gui.add( params, 'molecule', MOLECULES ).onChange( loadMolecule );gui.open();}function changeVizType( value ) {if ( value === 0 ) showAtoms();else if ( value === 1 ) showBonds();else showAtomsBonds();}//function showAtoms() {for ( let i = 0; i < objects.length; i ++ ) {const object = objects[ i ];if ( object instanceof CSS3DSprite ) {object.element.style.display = '';object.visible = true;} else {object.element.style.display = 'none';object.visible = false;}}}function showBonds() {for ( let i = 0; i < objects.length; i ++ ) {const object = objects[ i ];if ( object instanceof CSS3DSprite ) {object.element.style.display = 'none';object.visible = false;} else {object.element.style.display = '';object.element.style.height = object.userData.bondLengthFull;object.visible = true;}}}function showAtomsBonds() {for ( let i = 0; i < objects.length; i ++ ) {const object = objects[ i ];object.element.style.display = '';object.visible = true;if ( ! ( object instanceof CSS3DSprite ) ) {object.element.style.height = object.userData.bondLengthShort;}}}//function colorify( ctx, width, height, color ) {const r = color.r, g = color.g, b = color.b;const imageData = ctx.getImageData( 0, 0, width, height );const data = imageData.data;for ( let i = 0, l = data.length; i < l; i += 4 ) {data[ i + 0 ] *= r;data[ i + 1 ] *= g;data[ i + 2 ] *= b;}ctx.putImageData( imageData, 0, 0 );}function imageToCanvas( image ) {const width = image.width;const height = image.height;const canvas = document.createElement( 'canvas' );canvas.width = width;canvas.height = height;const context = canvas.getContext( '2d' );context.drawImage( image, 0, 0, width, height );return canvas;}//function loadMolecule( model ) {const url = 'models/pdb/' + model;for ( let i = 0; i < objects.length; i ++ ) {const object = objects[ i ];object.parent.remove( object );}objects.length = 0;loader.load( url, function ( pdb ) {const geometryAtoms = pdb.geometryAtoms;const geometryBonds = pdb.geometryBonds;const json = pdb.json;geometryAtoms.computeBoundingBox();geometryAtoms.boundingBox.getCenter( offset ).negate();geometryAtoms.translate( offset.x, offset.y, offset.z );geometryBonds.translate( offset.x, offset.y, offset.z );const positionAtoms = geometryAtoms.getAttribute( 'position' );const colorAtoms = geometryAtoms.getAttribute( 'color' );const position = new THREE.Vector3();const color = new THREE.Color();for ( let i = 0; i < positionAtoms.count; i ++ ) {position.fromBufferAttribute( positionAtoms, i );color.fromBufferAttribute( colorAtoms, i );const atomJSON = json.atoms[ i ];const element = atomJSON[ 4 ];if ( ! colorSpriteMap[ element ] ) {const canvas = imageToCanvas( baseSprite );const context = canvas.getContext( '2d' );colorify( context, canvas.width, canvas.height, color );const dataUrl = canvas.toDataURL();colorSpriteMap[ element ] = dataUrl;}const colorSprite = colorSpriteMap[ element ];const atom = document.createElement( 'img' );atom.src = colorSprite;const object = new CSS3DSprite( atom );object.position.copy( position );object.position.multiplyScalar( 75 );object.matrixAutoUpdate = false;object.updateMatrix();root.add( object );objects.push( object );}const positionBonds = geometryBonds.getAttribute( 'position' );const start = new THREE.Vector3();const end = new THREE.Vector3();for ( let i = 0; i < positionBonds.count; i += 2 ) {start.fromBufferAttribute( positionBonds, i );end.fromBufferAttribute( positionBonds, i + 1 );start.multiplyScalar( 75 );end.multiplyScalar( 75 );tmpVec1.subVectors( end, start );const bondLength = tmpVec1.length() - 50;//let bond = document.createElement( 'div' );bond.className = 'bond';bond.style.height = bondLength + 'px';let object = new CSS3DObject( bond );object.position.copy( start );object.position.lerp( end, 0.5 );object.userData.bondLengthShort = bondLength + 'px';object.userData.bondLengthFull = ( bondLength + 55 ) + 'px';//const axis = tmpVec2.set( 0, 1, 0 ).cross( tmpVec1 );const radians = Math.acos( tmpVec3.set( 0, 1, 0 ).dot( tmpVec4.copy( tmpVec1 ).normalize() ) );const objMatrix = new THREE.Matrix4().makeRotationAxis( axis.normalize(), radians );object.matrix.copy( objMatrix );object.quaternion.setFromRotationMatrix( object.matrix );object.matrixAutoUpdate = false;object.updateMatrix();root.add( object );objects.push( object );//const joint = new THREE.Object3D();joint.position.copy( start );joint.position.lerp( end, 0.5 );joint.matrix.copy( objMatrix );joint.quaternion.setFromRotationMatrix( joint.matrix );joint.matrixAutoUpdate = false;joint.updateMatrix();bond = document.createElement( 'div' );bond.className = 'bond';bond.style.height = bondLength + 'px';object = new CSS3DObject( bond );object.rotation.y = Math.PI / 2;object.matrixAutoUpdate = false;object.updateMatrix();object.userData.bondLengthShort = bondLength + 'px';object.userData.bondLengthFull = ( bondLength + 55 ) + 'px';object.userData.joint = joint;joint.add( object );root.add( joint );objects.push( object );}//console.log( "CSS3DObjects:", objects.length );changeVizType( params.vizType );} );}//function onWindowResize() {camera.aspect = window.innerWidth / window.innerHeight;camera.updateProjectionMatrix();renderer.setSize( window.innerWidth, window.innerHeight );}function animate() {requestAnimationFrame( animate );controls.update();const time = Date.now() * 0.0004;root.rotation.x = time;root.rotation.y = time * 0.7;render();}function render() {renderer.render( scene, camera );}</script></body></html>

本内容来源于小豆包,想要更多内容请跳转小豆包 》

这篇关于CSS3DObject 分子公式demo 实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/818001

相关文章

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

windos server2022里的DFS配置的实现

《windosserver2022里的DFS配置的实现》DFS是WindowsServer操作系统提供的一种功能,用于在多台服务器上集中管理共享文件夹和文件的分布式存储解决方案,本文就来介绍一下wi... 目录什么是DFS?优势:应用场景:DFS配置步骤什么是DFS?DFS指的是分布式文件系统(Distr

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的