Home Web Front-end JS Tutorial How to implement 3D cinema using three.js

How to implement 3D cinema using three.js

Jun 20, 2018 am 10:50 AM

This article mainly explains how to realize the functions and principle analysis of 3D cinema through three.js. Friends in need can refer to it.

In this article, we comprehensively analyze the basic knowledge of realizing 3D cinema by introducing the visual principles of 3D cinema and introducing the three.js event processing process.

1. Create a 3D space

You can imagine that we are in a room, and the room is a cube. If you have a taste for life, you may put wallpaper in the room, three.js You can easily create a cube and attach textures around it so that the camera is inside the cube and the camera can rotate 360 ​​degrees to simulate a real scene.

Convert to code:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

const path = 'assets/image/'

 const format = '.jpg'

 const urls = [

 `${path}px${format}`, `${path}nx${format}`,

 `${path}py${format}`, `${path}ny${format}`,

 `${path}pz${format}`, `${path}nz${format}`

 ]

 const materials = []

 urls.forEach(url => {

 const textureLoader = new TextureLoader()

 textureLoader.setCrossOrigin(this.crossOrigin)

 const texture = textureLoader.load(url)

 materials.push(new MeshBasicMaterial({

 map: texture,

 overdraw: true,

 side: BackSide

 }))

 })

 const cube = new Mesh(new CubeGeometry(9000, 9000, 9000), new MeshFaceMaterial(materials))

 this.scene.add(cube)

Copy after login

CubeGeometry creates an oversized cube MeshFaceMaterial and attaches texture to the cube. Since the perspective is inside the cube, side: BackSide 2. Particle effect

A 3D model is composed of points, lines, and surfaces. You can traverse every point of the model, convert each point into a geometric model, and paste it with texture, copy the position of each point, and use these geometric models to recreate Forming a model with only points, this is the basic principle of particle effects.

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

this.points = new Group()

 const vertices = []

 let point

 const texture = new TextureLoader().load('assets/image/dot.png')

 geometry.vertices.forEach((o, i) => {

 // 记录每个点的位置

 vertices.push(o.clone())

 const _geometry = new Geometry()

 // 拿到当前点的位置

 const pos = vertices[i]

 _geometry.vertices.push(new Vector3())

 const color = new Color()

 color.r = Math.abs(Math.random() * 10)

 color.g = Math.abs(Math.random() * 10)

 color.b = Math.abs(Math.random() * 10)

 const material = new PointsMaterial({

 color,

 size: Math.random() * 4 + 2,

 map: texture,

 blending: AddEquation,

 depthTest: false,

 transparent: true

 })

 point = new Points(_geometry, material)

 point.position.copy(pos)

 this.points.add(point)

 })

 return this.points

Copy after login

new Group creates a group, which can be said to be a collection of particles. Set the particles and position through point.position.copy(pos). The coordinates are the same as the position of the corresponding point in the model 3. Click event processing

The click event of three.js requires the help of a ray caster (Raycaster). To facilitate understanding, please look at a picture first:

Raycaster emits a ray. intersectObject monitors the object hit by the ray

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

this.raycaster = new Raycaster()

// 把你要监听点击事件的物体用数组储存起来

this.seats.push(seat)

 

onTouchStart(event) {

 event.preventDefault()

 event.clientX = event.touches[0].clientX;

 event.clientY = event.touches[0].clientY;

 this.onClick(event)

 }

 

 onClick(event) {

 const mouse = new Vector2()

 mouse.x = ( event.clientX / this.renderer.domElement.clientWidth ) * 2 - 1

 mouse.y = - ( event.clientY / this.renderer.domElement.clientHeight ) * 2 + 1;

 this.raycaster.setFromCamera(mouse, this.camera)

 // 检测命中的座位

 const intersects = this.raycaster.intersectObjects(this.seats)

 if (intersects.length > 0) {

 intersects[0].object.material = new MeshLambertMaterial({

  color: 0xff0000

 })

 }

 }

Copy after login

intersects.length > 0 means that the ray hits a certain geometry. Lazy only implements click implementation on the mobile side. If you want to see how to implement it on PC, please see thee.js official website

4. Preliminary use of shaders

Shaders are divided into vertex shaders and fragment shaders. They are written in GLSL language. It is a language that communicates with the GPU. Here we only talk about how to use it.

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

const vertext = `

 void main()

 {

 gl_Position = projectionMatrix * modelViewMatrix * vec4(position,1.0);

 }

 `

 

const fragment = `

 uniform vec2 resolution;

 uniform float time;

 

 vec2 rand(vec2 pos)

 {

 return fract( 0.00005 * (pow(pos+2.0, pos.yx + 1.0) * 22222.0));

 }

 vec2 rand2(vec2 pos)

 {

 return rand(rand(pos));

 }

 

 float softnoise(vec2 pos, float scale)

 {

 vec2 smplpos = pos * scale;

 float c0 = rand2((floor(smplpos) + vec2(0.0, 0.0)) / scale).x;

 float c1 = rand2((floor(smplpos) + vec2(1.0, 0.0)) / scale).x;

 float c2 = rand2((floor(smplpos) + vec2(0.0, 1.0)) / scale).x;

 float c3 = rand2((floor(smplpos) + vec2(1.0, 1.0)) / scale).x;

 

 vec2 a = fract(smplpos);

 return mix(

 mix(c0, c1, smoothstep(0.0, 1.0, a.x)),

 mix(c2, c3, smoothstep(0.0, 1.0, a.x)),

 smoothstep(0.0, 1.0, a.y));

 }

 

 void main(void)

 {

 vec2 pos = gl_FragCoord.xy / resolution.y;

 pos.x += time * 0.1;

 float color = 0.0;

 float s = 1.0;

 for(int i = 0; i < 8; i++)

 {

 color += softnoise(pos+vec2(i)*0.02, s * 4.0) / s / 2.0;

 s *= 2.0;

 }

 gl_FragColor = vec4(color);

 }

 `

// 设置物体的质材为着色器质材

 let material = new ShaderMaterial({

 uniforms: uniforms,

 vertexShader: vertext,

 fragmentShader: fragment,

 transparent: true,

 })

Copy after login

5. Halo effect

Since it is a simulated cinema, I want to make a projector to simulate the light emitted by the projector.

1

2

3

4

5

6

7

8

9

10

11

12

// 光晕效果必须设置alpha = true

 const renderer = this.renderer = new WebGLRenderer({alpha: true, antialias: true})

 

 let textureFlare = new TextureLoader().load(&#39;assets/image/lensflare0.png&#39;)

 let textureFlare3 = new TextureLoader().load(&#39;assets/image/lensflare3.png&#39;)

 let flareColor = new Color(0xffffff)

 let lensFlare = new LensFlare(textureFlare, 150, 0.0 , AdditiveBlending, flareColor)

 lensFlare.add(textureFlare3, 60, 0.6, AdditiveBlending);

 lensFlare.add(textureFlare3, 70, 0.7, AdditiveBlending);

 lensFlare.add(textureFlare3, 120, 0.9, AdditiveBlending);

 lensFlare.add(textureFlare3, 70, 1.0, AdditiveBlending);

 lensFlare.position.set(0, 150, -85)

Copy after login

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Detailed introduction to updating objects in mongoose

Detailed introduction to setTimeout in JS functions

How to use jquery to achieve the left and right scaling effect of the sidebar

How to implement the number input box component in Vue

How to implement custom display number of messages in jquery

How to implement component interaction in Angular2

How to solve the soft problem in js Keyboard covering input box

The above is the detailed content of How to implement 3D cinema using three.js. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if I encounter garbled code printing for front-end thermal paper receipts? What should I do if I encounter garbled code printing for front-end thermal paper receipts? Apr 04, 2025 pm 02:42 PM

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Who gets paid more Python or JavaScript? Who gets paid more Python or JavaScript? Apr 04, 2025 am 12:09 AM

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Is JavaScript hard to learn? Is JavaScript hard to learn? Apr 03, 2025 am 12:20 AM

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

How to achieve parallax scrolling and element animation effects, like Shiseido's official website?
or:
How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? How to achieve parallax scrolling and element animation effects, like Shiseido's official website? or: How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? Apr 04, 2025 pm 05:36 PM

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

The difference in console.log output result: Why are the two calls different? The difference in console.log output result: Why are the two calls different? Apr 04, 2025 pm 05:12 PM

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

How to implement panel drag and drop adjustment function similar to VSCode in front-end development? How to implement panel drag and drop adjustment function similar to VSCode in front-end development? Apr 04, 2025 pm 02:06 PM

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...

See all articles