SphereGeometry上的三个JS图像

时间:2019-10-07 09:58:31

标签: javascript canvas three.js

我正在使用三个JS这样在球体上实现等矩形图像。使用maptoglobe.com 我要实现的目标

我得到的是什么
   我正在使用的代码

 this.scene = new THREE.Scene();
    this.geometry = new THREE.SphereGeometry( 0.4, 100, 100 );
    var texture = new THREE.TextureLoader().load('assets/Webp.png');

    this.material = new THREE.MeshBasicMaterial({map : texture, overdraw: 0.1});

    this.mesh = new THREE.Mesh( this.geometry, this.material );

    this.scene.add( this.mesh );

不同之处在于maptoglobe.com图片中出现红线。但不在我编写的代码中。

任何帮助将不胜感激。

0 个答案:

没有答案