gpt4 book ai didi

angular - 上传和预览 GLTF 文件 (3D)

转载 作者:行者123 更新时间:2023-12-05 03:48:15 25 4
gpt4 key购买 nike

有没有办法从输入类型文件中预览 .gltf (3D) 文件?我尝试上传 3D 文件,但没有显示任何内容。有谁知道是否可以解决我的问题?我已经测试了一切,但我仍然没有得到任何结果。 glTF 需要“转换”才能显示。

谢谢

DEMO

HTML

<div style="height:100%; width:100%">
<input id="file-input" type="file"
(change)="mychange($event)" />
<canvas id="c"></canvas>
</div>

.TS

 mychange(e){
let file = e.target.files[0];
let reader = new FileReader();
reader.onload = function ( gltfText ) {
const canvas = <HTMLCanvasElement> document.querySelector('#c');
const renderer = new THREE.WebGLRenderer({canvas});

const fov = 45;
const aspect = 2; // the canvas default
const near = 0.1;
const far = 100;
const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
camera.position.set(0, 10, 20);

const controls = new OrbitControls(camera, canvas);
controls.target.set(0, 5, 0);
controls.update();

const scene = new THREE.Scene();
scene.background = new THREE.Color('black');

{
const planeSize = 40;

const loader = new THREE.TextureLoader();
const texture = loader.load('https://threejsfundamentals.org/threejs/resources/images/checker.png');
texture.wrapS = THREE.RepeatWrapping;
texture.wrapT = THREE.RepeatWrapping;
texture.magFilter = THREE.NearestFilter;
const repeats = planeSize / 2;
texture.repeat.set(repeats, repeats);

const planeGeo = new THREE.PlaneBufferGeometry(planeSize, planeSize);
const planeMat = new THREE.MeshPhongMaterial({
map: texture,
side: THREE.DoubleSide,
});
const mesh = new THREE.Mesh(planeGeo, planeMat);
mesh.rotation.x = Math.PI * -.5;
scene.add(mesh);
}

{
const skyColor = 0xB1E1FF; // light blue
const groundColor = 0xB97A20; // brownish orange
const intensity = 1;
const light = new THREE.HemisphereLight(skyColor, groundColor, intensity);
scene.add(light);
}

{
const color = 0xFFFFFF;
const intensity = 1;
const light = new THREE.DirectionalLight(color, intensity);
light.position.set(5, 10, 2);
scene.add(light);
scene.add(light.target);
}

function frameArea(sizeToFitOnScreen, boxSize, boxCenter, camera) {
const halfSizeToFitOnScreen = sizeToFitOnScreen * 0.5;
const halfFovY = THREE.MathUtils.degToRad(camera.fov * .5);
const distance = halfSizeToFitOnScreen / Math.tan(halfFovY);
const direction = (new THREE.Vector3())
.subVectors(camera.position, boxCenter)
.multiply(new THREE.Vector3(1, 0, 1))
.normalize();

camera.position.copy(direction.multiplyScalar(distance).add(boxCenter));
camera.near = boxSize / 100;
camera.far = boxSize * 100;
camera.updateProjectionMatrix();
camera.lookAt(boxCenter.x, boxCenter.y, boxCenter.z);
}

{
const gltfLoader = new GLTFLoader();
gltfLoader.parse( gltfText.target.result, '', function( gltf ){
const root = gltf.scene;
scene.add(root);
const box = new THREE.Box3().setFromObject(root);
const boxSize = box.getSize(new THREE.Vector3()).length();
const boxCenter = box.getCenter(new THREE.Vector3());
frameArea(boxSize * 0.5, boxSize, boxCenter, camera);
controls.maxDistance = boxSize * 10;
controls.target.copy(boxCenter);
controls.update();
});
}

function resizeRendererToDisplaySize(renderer) {
const canvas = renderer.domElement;
const width = canvas.clientWidth;
const height = canvas.clientHeight;
const needResize = canvas.width !== width || canvas.height !== height;
if (needResize) {
renderer.setSize(width, height, false);
}
return needResize;
}

function render() {
if (resizeRendererToDisplaySize(renderer)) {
const canvas = renderer.domElement;
camera.aspect = canvas.clientWidth / canvas.clientHeight;
camera.updateProjectionMatrix();
}

renderer.render(scene, camera);

requestAnimationFrame(render);
}

requestAnimationFrame(render);

};
}

最佳答案

three.js editor确实支持这个用例。这个想法是使用 FileReader API。要加载一个 glb 文件,代码如下所示:

const reader = new FileReader();
reader.addEventListener( 'load', function ( event ) {

const contents = event.target.result;

const loader = new GLTFLoader();
loader.parse( contents, '', function ( gltf ) {

const scene = gltf.scene;
console.log( scene );

} );

}, false );
reader.readAsArrayBuffer( file );

file 变量是 File 的一个实例. three.js编辑器中的相关代码位于Loader.js .

关于angular - 上传和预览 GLTF 文件 (3D),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64538909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com