美文网首页
加载STL模型

加载STL模型

作者: Codifier | 来源:发表于2019-11-13 14:56 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>STL Loader</title>
    <script src="../../three-part/threejs/three.js"></script>
    <script src="../../three-part/threejs/STLLoader.js"></script>
    <script src="../../three-part/utils/stats.min.js"></script>
    <script src="../../three-part/utils/dat.gui.min.js"></script>
    <script src="../controls/TrackballControls.js"></script>
    <script src="../util/util.js"></script>
    <style>
        body {
            margin: 0;
            overflow: hidden;
        }
    </style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript">
    init();
    function init() {
        // show FPS
        let stats = initStats();
        // resize
        window.addEventListener('resize', onResize, false);

        let scene = new THREE.Scene();
        let camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 1000);
        camera.position.x = 50;
        camera.position.y = 50;
        camera.position.z = 30;
        camera.lookAt(new THREE.Vector3(0, 15, 0));

        let renderer = new THREE.WebGLRenderer();
        renderer.setClearColor(new THREE.Color(0x000000));
        renderer.setSize(window.innerWidth, window.innerHeight);
        renderer.shadowMap.enabled = true;
        document.getElementById("container").appendChild(renderer.domElement);

        // init trackball control
        let trackballControls = initTrackballControls(camera, renderer);
        let clock = new THREE.Clock();

        let loader = new THREE.STLLoader();
        loader.load('../assets/models/head/SolidHead_2_lowPoly_42k.stl',
            // onLoad callback
            function (geometry) {
                let material = new THREE.MeshStandardMaterial({
                    color: 0xffffff,
                    metalness: 1,
                    roughness: 0.5,
                });
                let mesh = new THREE.Mesh(geometry, material);
                mesh.rotation.x = -0.5 * Math.PI;
                mesh.scale.set(0.3, 0.3, 0.3);
                mesh.position.set(-10, 0, 10);
                scene.add(mesh);
            },
            // onProgress callback
            function (xhr) {
                console.log( (xhr.loaded / xhr.total * 100) + '% loaded' );
            },
            // onError callback
            function (err) {
                console.error('An error happened');
            }
        );

        // add spotlight
        let spotLight = new THREE.SpotLight(0xffffff, 1, 180, Math.PI / 4);
        spotLight.shadow.mapSize.set(2048, 2048);
        spotLight.position.set(0, 60, 0);
        spotLight.castShadow = true;
        spotLight.angle = 1.2;
        spotLight.intensity = 3;
        scene.add(spotLight);

        // add a plane
        let planeGeometry = new THREE.PlaneGeometry(100, 100, 1, 1);
        let planeMaterial = new THREE.MeshLambertMaterial({
            color: 0xffffff
        });
        let plane = new THREE.Mesh(planeGeometry, planeMaterial);
        plane.receiveShadow = true;
        plane.rotation.x = -0.5 * Math.PI;
        scene.add(plane);

        // attributes which can be modified in GUI
        const controls = {

        };
        // init GUI
        initGUI();

        renderScene();

        function initGUI(){
            let gui = new dat.GUI();
        }

        function onResize() {
            camera.aspect = window.innerWidth / window.innerHeight;
            camera.updateProjectionMatrix();
            renderer.setSize(window.innerWidth, window.innerHeight);
        }

        function renderScene(){
            trackballControls.update(clock.getDelta());
            stats.update();
            requestAnimationFrame(renderScene);
            renderer.render(scene, camera);
        }
    }
</script>
</body>
</html>

运行结果:



总结:

  1. 使用STLLoader之前需要引入STLLoader.js文件;
  2. STLLoader回调函数中的geometry为几何体,需要自己制定材质。

相关文章

  • 加载STL模型

    运行结果: 总结: 使用STLLoader之前需要引入STLLoader.js文件; STLLoader回调函数中...

  • Threejs-医疗骨骼分析系统

    背景: 基于医疗骨骼的stl模型,做拆解分析 运行环境: 二维码扫码,请求阿里云服务器的node服务,加载项目,最...

  • 野马战斗机STL格式免费下载[3d打印模型]

    模型主题:野马战斗机3d打印模型 模型类型:STL格式 模型大小:1MB 更新时间:2016-07-28 模型类型...

  • tensorflow objection detection m

    上一篇是网络模型的加载,这一篇是输入模型的加载,之后还有训练模型的加载。输入模型的加载的开始是train.py文件...

  • Tensorflow 训练好的模型保存和载入

    方法一 这种存储方式在加载模型时需要再次定义网络结构 模型训练和存储 加载模型 方法二 这种存储方式在加载模型...

  • pytorch 加载预训练模型

    1 加载内置的预训练模型 2 加载自己定义的预训练的模型 3 加载部分模型参数 参考链接https://www.c...

  • Python 3.7.6 机器学习中怎么保存和加载模型

    1、使用 joblib 保存模型 加载模型,注释部分直接进行了预测 2、使用 pickle 保存模型 加载模型,注...

  • three.js加载obj模型报错

    1.模型放到public/static下2.导入加载器 3.加载模型

  • Marker1

    1、功能需求: 上传stl格式文件 可供切换选择已上传的不同模型 对模型的尺寸可实行精确调整 尝试实现:更换模型后...

  • 任务列表

    C++ 《C++ primer》、《STL源码解析》、《effective C++》、《深度搜索c++对象模型》 ...

网友评论

      本文标题:加载STL模型

      本文链接:https://www.haomeiwen.com/subject/asghictx.html