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

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

一、引入点光源辅助观察

javascript 复制代码
// 光源辅助观察
const pointLightHelper = new THREE.PointLightHelper(pointLight, 10);
scene.add(pointLightHelper);

二、改变点光源位置

javascript 复制代码
// 点光源位置
pointLight.position.set(200, 200, 200);
// 改变点光源位置
pointLight.position.set(-100, -100, -100);
scene.add(pointLight); //点光源添加到场景中

三、完整代码

html 复制代码
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Learn Three</title>
    <!-- 引入three,下载地址参考:http://www.webgl3d.cn/pages/aac9ab/#%E7%89%B9%E5%AE%9A%E7%89%88%E6%9C%ACthree-js%E6%96%87%E4%BB%B6%E5%8C%85%E4%B8%8B%E8%BD%BD -->
    <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 分钟前
11.Python设计模式:单例模式与工厂模式实战指南
前端·python
yanyu-yaya9 分钟前
第四章 react-redux,@reduxjs/toolkit依赖,学习
前端·学习·react.js
小付同学呀15 分钟前
前端快速入门学习3——CSS介绍与选择器
前端·css·学习
Jenlybein15 分钟前
快速了解浏览器原理及工作流程
前端·浏览器
醋醋16 分钟前
vue2源码记录(2)
前端·vue.js
前端飞天猪16 分钟前
学习笔记:企业级Git代码规范与协作指南💖
前端·github
艾克马斯奎普特16 分钟前
Vue.js 3 渐进式实现之响应式系统——第五节:分支切换与 cleanup
前端·vue.js
总之就是非常可爱18 分钟前
五分钟看懂 alien signals 依赖收集原理
前端·vue.js
Bruce_Liuxiaowei19 分钟前
基于Flask的Windows命令大全Web应用技术解析与架构设计
前端·windows·python·flask
EricXJ20 分钟前
npm、Yarn、pnpm Workspace 对比
前端·javascript