Questions tagged [3d-model]

A mathematical representation of any three-dimensional surface of an object.

344 questions
2
votes
1 answer

ncaught Error: Could not load ./desktop_pc/scene.gltf: THREE.GLTFLoader: Failed to load buffer "scene.bin

i got the following error, when i tried to render 3d model using react-three-fiber, I'm kinda new of using threejs, any help would be much appreciated uncaught Error: Could not load ./desktop_pc/scene.gltf: THREE.GLTFLoader: Failed to load buffer…
mohdraazy
  • 39
  • 2
2
votes
0 answers

How to load texture in Open3D

I'm posting this even though a similar question exists: How to add texture to a mesh in python Open3d? as some classes and their definition have changed with v.0.16.0. I have been trying to visualize 3D models in Open3D-Python by using the following…
SHASHANK N
  • 47
  • 5
2
votes
1 answer

My threeJS class only apply meshs settings to 1 of 2 models in my scene

I am creating a scene in three js with two models in .glb format; I am following a pre-recorded class and I have followed exactly all the steps. We create a class for the models in model.js and in index.js we define them. Everything was working fine…
2
votes
1 answer

can 3D model saved in gltf 2.0 format support arbitrary user data?

I am managing the creation of a 3D Asset library, with a delivery expectation of 5,000 models per pass, with several passes each from multiple model creation vendors. The works in progress are all in FBX format, with final delivery in binary gltf…
Blake Senftner
  • 756
  • 1
  • 8
  • 24
2
votes
1 answer

How can I properly place 3d models on Face using Augmented Faces Sceneform API in android?

I am getting free 3d models from some sites. I have to place a Hat,Mask,and Spectacles like an object on my face. But my models are not rendering properly on face. Sometimes it renders above expected position or sometimes not in exact depth. How can…
2
votes
1 answer

FBX - In a FBX file, which data should I use to build the skeleton of a model and animate it?

For learning purposes, I'm writing a FBX file reader in c++, in order to understand how this kind of 3D models are working. I must specify that I already successfully wrote a .x file reader in the past, so I'm comfortable with concepts like…
Jean-Milost Reymond
  • 1,833
  • 1
  • 15
  • 36
2
votes
1 answer

What are faces in .obj files and how do they work?

Ive got this .obj file. It's a model of a Mini-Cooper. I extracted all vertices and faces into lists that look like this: vertices = [(14.82, -22.56, 25.83), (25.38, 29.02, 15.87), (-31.71, -57.05, 19.29), (-27.95, 46.76, 17.98), (-25.44, 47.58,…
user14663792
2
votes
1 answer

Unity - Blending 3D object with flat picture in the background

I am struggling with blending 3D models with a flat background in Unity. What I want to achieve is a desktop app that allows users to import a photo of some room (for example living room) and then use 3D models to "upgrade" the room. Currently, my…
wkwoczak
  • 31
  • 2
2
votes
1 answer

How to load gltf Model in Babylonjs Reactjs project

I am using Babylonjs in Reactjs. I have successfully loaded .babylon model but I want to load .gltf model in Reactjs How can I load .gltf file model in Babylon reactjs. here is the code snippet loadModels = () => { let loader = new…
2
votes
1 answer

How to manipulate individual bones of a 3d model in react native?

I would like to display a 3d model of a skeleton (human body), using React Native. Then if I would like to set the position of specific bones of the human body, I would like to call a function like: setPosition(3dmodelObject,boneId,yaw,pitch…
Rahul Iyer
  • 19,924
  • 21
  • 96
  • 190
2
votes
1 answer

How to import cloth simulation from Blender to Unity

The only way that I found to import the cloth animation from Blender to Unity for mobile is by exporting each frame as a separate mesh and then replacing it at runtime to create the animation. (if anyone knows other solution please tell me). The…
Vlad Ilisan
  • 63
  • 1
  • 10
2
votes
0 answers

How can I place 3D models on the right place of the face using ARKit and face detection?

This is my first time working with face detection on ARKit and I want to place a 3D model of a hat and glasses on the right place of the face. How can I use the node (with geometry: faceGeometry)to do that or is there any other way to position the…
izzym
  • 89
  • 3
2
votes
2 answers

Google model-viewer - how to set max zoom?

I'm very happy about what I'm able to do using Google model-viewer. It's relatively configurable, but there's more I'd like to be able to do with the camera-- for instance, setting a max zoom/min distance from the target. I've found code that seems…
AlleyOOP
  • 1,536
  • 4
  • 20
  • 43
2
votes
2 answers

I'm trying to rotate a (THREE.mesh) 3d object around another that is already rotating on an axis. Any pointers?

I am looking for a way to orbit a moon around my planet that is orbiting my sun. (All of these are 3d objects in three.js) I have defined all my objects and currently have the earth rotating around my sun, but I am having difficulties getting the…
2
votes
0 answers

How to translate, rotate, scale GLTF 3D Model (Three.js)

Was wondering if it's possible to translate, rotate, scale a model after it has been loaded to the scene. Also im looking a better way to use the loaded, since I have multiple models that I want to add in my program, but I do not want to call…
Loizos Vasileiou
  • 674
  • 10
  • 37
1 2
3
22 23