Home  >  Article  >  Web Front-end  >  Detailed explanation of Three.js using orbit controls plug-in (orbit control) to control model interaction

Detailed explanation of Three.js using orbit controls plug-in (orbit control) to control model interaction

巴扎黑
巴扎黑Original
2018-05-10 17:30:0016492browse

This article mainly introduces to you the relevant information about Three.js using orbit controls plug-in, that is, orbit control to control the interactive actions of the model. The article introduces it in detail through the example code, which has certain reference and learning value for everyone. , friends who need it can come and take a look below.

Recommended ManualJavaScript Chinese Reference Manual

##Preface

This article mainly introduces to you the relevant content about Three.js using orbit controls plug-in (orbit control) to control model interaction. This effect is better than the trackball plug-in in Section 8, although the trackball plug-in can scroll back and forth. , but it is easy to distinguish the relationship between up, down, left and right, and it is easy to be confused, so it is suitable for debugging, while the orbit control plug-in orbit is suitable for customers to use and will not produce confusing effects. Let’s talk about its use below.


(1) First introduce the plug-in, the file address is examples/js/controls/OrbitControls.js in the official case.


(2) Then instantiate the function, pass in the DOM of the camera and renderer, and set the relevant settings.

//用户交互插件 鼠标左键按住旋转,右键按住平移,滚轮缩放 
 var controls; 
 function initControls() { 
 
  controls = new THREE.OrbitControls( camera, renderer.domElement ); 
 
  // 如果使用animate方法时,将此函数删除 
  //controls.addEventListener( 'change', render ); 
  // 使动画循环使用时阻尼或自转 意思是否有惯性 
  controls.enableDamping = true; 
  //动态阻尼系数 就是鼠标拖拽旋转灵敏度 
  //controls.dampingFactor = 0.25; 
  //是否可以缩放 
  controls.enableZoom = true; 
  //是否自动旋转 
  controls.autoRotate = true; 
  //设置相机距离原点的最远距离 
  controls.minDistance = 200; 
  //设置相机距离原点的最远距离 
  controls.maxDistance = 600; 
  //是否开启右键拖拽 
  controls.enablePan = true; 
 }

(3) Finally, call orbit’s

update() update within the animate function.

function animate() { 
  //更新控制器 
  controls.update(); 
  render(); 
 
  //更新性能插件 
  stats.update(); 
  requestAnimationFrame(animate); 
 }

achieved the relevant effects.

The following are all case codes:

 
 
 
  
 Title 
  

Recommended related articles: ​ ​ 1.
Use three.js to create a project2.
Detailed explanation of the application of charts generated by echarts in three.js
Related video recommendations:1.
Quick introduction to JavaScript_Jade Girl Heart Sutra series

The above is the detailed content of Detailed explanation of Three.js using orbit controls plug-in (orbit control) to control model interaction. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn