• 【前端知识】Three 学习日志(五)—— 点光源辅助观察


    Three 学习日志(五)—— 点光源辅助观察

    一、引入点光源辅助观察
    // 光源辅助观察
    const pointLightHelper = new THREE.PointLightHelper(pointLight, 10);
    scene.add(pointLightHelper);
    
    • 1
    • 2
    • 3

    在这里插入图片描述

    二、改变点光源位置
    // 点光源位置
    pointLight.position.set(200, 200, 200);
    // 改变点光源位置
    pointLight.position.set(-100, -100, -100);
    scene.add(pointLight); //点光源添加到场景中
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

    三、完整代码
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Learn Threetitle>
        
        <script src="../build/three.js">script>
        
        <script type="importmap">
            {
                "imports": {
                    "three": "../build/three.module.js",
                    "three/addons/": "../examples/jsm/"
                }
            }
        script>
    head>
    
    <body>
        <script type="module">
            // 引入轨道控制器扩展库OrbitControls.js
            import { OrbitControls } from 'three/addons/controls/OrbitControls.js';
            // 创建3D场景对象Scene
            const scene = new THREE.Scene();
            const axesHelper = new THREE.AxesHelper(150);
            scene.add(axesHelper);
            const geometry = new THREE.BoxGeometry(100, 100, 100);
            const material = new THREE.MeshLambertMaterial();
            const pointLight = new THREE.PointLight(0xffffff, 1.0);
    
            // 点光源位置
            pointLight.position.set(200, 200, 200);
            // 改变点光源位置
            pointLight.position.set(-100, -100, -100);
            scene.add(pointLight); //点光源添加到场景中
            // 光源辅助观察
            const pointLightHelper = new THREE.PointLightHelper(pointLight, 10);
            scene.add(pointLightHelper);
    
            const mesh = new THREE.Mesh(geometry, material); //网格模型对象Mesh
            mesh.position.set(0, 0, 0);
            scene.add(mesh);
            const camera = new THREE.PerspectiveCamera();
            camera.position.set(200, 200, 200);
            camera.lookAt(0, 0, 0);
            const width = 800; //宽度
            const height = 500; //高度
            const renderer = new THREE.WebGLRenderer();
            renderer.setSize(width, height);
            renderer.render(scene, camera); //执行渲染操作
            document.body.appendChild(renderer.domElement);
            // 设置相机控件轨道控制器
            const controls = new OrbitControls(camera, renderer.domElement);
            // 如果OrbitControls改变了相机参数,重新调用渲染器渲染三维场景
            controls.addEventListener('change', function () {
                renderer.render(scene, camera); //执行渲染操作
            });//监听鼠标、键盘事件
    
        script>
    body>
    
    html>
    
    • 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
  • 相关阅读:
    【Android 屏幕适配】屏幕适配基础概念 ① ( Android 与 iOS 屏幕宽高比种类 | 屏幕像素密度 DPI )
    【机器学习】基于多元时间序列对高考预测分析案例
    水果店圈子:一家水果店要准备什么,开个水果店前期准备什么
    MayApps平台为政府机关后勤管理添“智慧”
    Linphone3.5.2 ARM RV1109音视频对讲开发记录
    消息中间件-RabbitMQ介绍
    12.1.5 将查询结果插入另一个表中
    leetcode39. 组合总和
    高并发下双重检测锁DCL指令重排问题剖析
    【毕业设计】前后端分离——实现登录注册功能
  • 原文地址:https://blog.csdn.net/weixin_42919342/article/details/133013017