A mathematical representation of any three-dimensional surface of an object.
Questions tagged [3d-model]
344 questions
0
votes
2 answers
Unity 3D combine texture
I got a helm, sword and a shield which use 1 texture each, so 3 draw calls. I want to get them to use a single texture to get the draw call down to 1, but not combining them into 1 mesh as i need to disable any of them randomly, plus the sword and…

Alex Man
- 3
- 3
0
votes
1 answer
OBJ model not loading in Three.JS
I'm trying to load obj models, here's code (CoffeeScript)
loader = new THREE.OBJLoader manager
if loadedModels.diamondRing == null
loader.load "obj/diamond/ring1.obj", (object) ->
object.traverse (child) ->
if child…

Magistr_AVSH
- 368
- 2
- 12
0
votes
1 answer
Including .ply file for javascript
I'm using a 3d modeling javascript library to view .ply files in a web page.
I have a folder currently in my public folder which javascript can access which has a temporary .ply file that should show up if other .ply files aren't found, this works…

rich green
- 1,143
- 4
- 13
- 31
0
votes
2 answers
Three.js - Translation animation of model. Not an object3D
Hey guys basically I have a crude scene set up. I was finally able to load to a 3D model of a sports car into my scene.
I can animate an Object3D primitive with for example sphere.translateY(1).
I for the death of me cannot figure out how to do a…

StefanBob
- 4,857
- 2
- 32
- 38
0
votes
0 answers
creating/changing 3d model file with C++
Is there any way to create new (or change existing) .3ds (or any other 3d model type) model using C++?
I've tried to use 3ds max SDK, but it seems to be helpful only to create plug-ins to 3ds max.

leoUA
- 43
- 6
0
votes
1 answer
How to create a 3d model with camera ou photos?
I wanna create a mobile app that uses a 3d model from a face.
I want create the model with photos or camera.
Any suggestions???
Thanks.

user1416264
- 13
- 1
- 2
0
votes
1 answer
How can I render a list of triangle mesh coordinates?
I have a file that I think represents a series of coordinates for a triangle mesh in 3D space. The first few lines look like this:
-0.000000,2.758621,12.413793 0.798542,2.443666,15.312572 2.584137,2.443666,12.413793
-0.000000,-18.758621,12.413793…

Wutaz
- 362
- 3
- 19
0
votes
1 answer
Including wavefront obj models into each other
Is there a way to include several wavefront obj files into one?
Friend of mine told me, there is definitely some include keyword in obj, which allows me to create obj files like:
#room.obj:
include chair.obj
include table.obj
...
v 26.7903…

relaxxx
- 7,566
- 8
- 37
- 64
0
votes
1 answer
using milkshape3d SDK in loading MS3D file
I'm loading an animation model using DirectX 11. Now I'm at the step of parsing MS3D model file and I am planing on using the MS3D SDK (http://www.milkshape3d.com/) for loading MS3D model. But it seems that this SDK is used for writing plugin in…

khanhhh89
- 317
- 5
- 19
0
votes
0 answers
Generate 3D model of a building with kinect sensor?
I want to generate a 3D model as I walk alone in a building or in a room with the kinect sensor. I want know is this possible?
my idea is to get 3d imaging from interval(like 1 image per 3 meters) and combine them, but how can I do that, how can I…

user2102013
- 29
- 11
0
votes
1 answer
How do I get the Mesh from a 3D model?
Im working with the jMonkeySDK on a 3D java game at the moment.
I really need to know how I can get the mesh from my spatial (3D model).
Does anyone have experience with this engine and knows how I can have access to the mesh?
I searched in the…

Dawesign
- 643
- 1
- 7
- 25
0
votes
1 answer
Can´t load js model in THREE JS
I have this code below and can´t seem to load the model.
loader = new THREE.JSONLoader(true);
loader.load("modelo.js" , function ( geometry, materials) {
mesh = new THREE.Mesh( geometry, new…

Pedro
- 41
- 9
0
votes
1 answer
Rendering a 3D model in matlab
I am trying to render these models in Matlab so that I can sample them and then use their shape for my research work.
My question is that: Is there a way to render 3D models, used in different 3D graphics engines, in Matlab?
I have found something…

masad
- 1,547
- 1
- 18
- 40
0
votes
0 answers
animated 3d model not rendered correctly xna
My animated 3d sheep model(used blender),with a small clip doesnot get rendered correctly,A complete deformed model is rendered, where as my crocodile animated model(also used blender) gets rendered perfectly with the clip played and i had the…

Corleone
- 361
- 1
- 3
- 6
0
votes
1 answer
Understand the Three.js exporter format when exporting from blender
I'm using the three.js model exporter with Blender, and I want to parse the produced file into C++. Getting the data in is no issue, but I don't understand the format they use for the faces. I have tried multiple models and the format is always like…

user947871
- 339
- 6
- 17