Questions tagged [3d-model]

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

344 questions
0
votes
3 answers

How to load 3-D models specifying file content rather than path in three.js?

I want to create an online viewer where a user can upload models and view them, rather than having to edit the path in the source code. Since browsers don't allow to retrieve file path but I can read the contents of the file, how do I load a model…
0
votes
0 answers

Simple 3D programming to view a model

I have some code that is manipulating some 3D models, for checking properties of the model and doing some calculations. I have the facet information and want to be able to pass this information on to another function or program so that it can be…
user802599
  • 787
  • 2
  • 12
  • 35
0
votes
1 answer

How to texture a 3D model in WebGL?

How do you texture a 3D model in WebGL? I understand all the basics of 3D in WebGL, I understand how to load textures and I understand how to load 3D models from external files, but I have no clue how to texture a model that is more complex than a…
HartleySan
  • 7,404
  • 14
  • 66
  • 119
0
votes
1 answer

3dsMax reinstall ; I fear to lost 3d models ; where to look to save?

I'm a trainee working in a company using 3dsMax Design 2015. Because of bugs (software cannot be opened anymore) the admin will try to reinstall it. I have to save datas (I think of 3d models) but 3ds is so huge I fear I will forgot something. (A…
LeDucSAS
  • 25
  • 7
0
votes
1 answer

Blender model is silver / metallic grey in Tabletop Simulator and doesn't take texture

I'm attempting to create a very basic hexagonal cylinder for the board of a board game. I've finally figured out how to make the model, export it as an .obj and import that into Tabletop Simulator via my website. When the model is imported, it…
Kamurai
  • 143
  • 2
  • 4
  • 19
0
votes
1 answer

Java/libgdx 3D model rotation error

Problem: my player model is supposed to turn into the direction of the last mouse click but instead of turning slowly it spins in all possible ways(Game has an isometric view, the model is supposed to rotate only around the Y-axis but it rotates…
Boskop88
  • 21
  • 5
0
votes
0 answers

3d model is shown only blue color Unity-VuforiaSDK

I have a unity scene that contains a 2d marker and 3d target. It works properly on editor, but not on android. On andoid phone, when the app recognizes the marker, I can only blue model in fullscreen. I use this package from unity asset store. How…
zakjma
  • 2,030
  • 12
  • 40
  • 81
0
votes
0 answers

three.js 3d model not showing in java project

I have a three.js sample project which contains a 3d model. The main part of the project is in HTML file. If you run that HTML file, it works fine. The 3d model is in .BDF format. Now I need to run this on a Java project (includes .java, .js and…
Reji
  • 1
  • 3
0
votes
1 answer

Display 3D model's coordinates (position)

I have a 3D model in C# wpf that rotates 360degrees rotating 5degrees each time using timespan. But I want to be able to view its coordinates like viewing the point3DX, point3DY, point3DZ on my window form. Any ideas how can I do that? Here are the…
0
votes
1 answer

Model renderer not working in Minecraft Forge

I'm attempting to create a Minecraft mod with Minecraft Forge for Minecraft 1.8 (recommended version), but the model renderer isn't working. CustomItem is rendering as a classic purple and black block. Inside public void…
Piper McCorkle
  • 1,044
  • 13
  • 27
0
votes
1 answer

Three.js - Load a model with material that doesn't require a light source to be seen

I'm currently using Three.js, version 71. I first create my models using blender, and then I export them as a JSON file. I then use THREE.JSONLoader to load the models into my scene using the following: this.jsonLoader.load(pathToModelFile,…
Programmer_D
  • 601
  • 2
  • 15
  • 27
0
votes
1 answer

How do I draw a 3D model using sharpDX?

How do I draw a 3D model using sharpDX? Most examples on the web just say that I can't without some other library. My models are in .fbx format and the build action properties are ToolkitModel.
Johan W
  • 9
  • 3
0
votes
1 answer

How to add text to surfaces of complex 3D models in Unity3D?

I would like to add small text, less than 10 letters to the surfaces of complex 3D models, such as a person model or a building. One way is to add the image texture to a material, and then add the material to the model. But by this way I can not…
raulgol
  • 3
  • 3
0
votes
1 answer

apply texture on OBJ files automatically in batchmode

I have created a C# script to create unity3D asset bundles automatically via batch mode. When I import FBX files and export them as asset bundles, on instantiation in the app at runtime the textures of FBX files are applied automatically; if while…
jainam
  • 363
  • 1
  • 6
  • 16
0
votes
0 answers

Parametrize 3D Model

I am working with a group on developing an application that captures 2D image of a human and convert it into 3D model. We have used stasm library to do ASM http://www.milbo.org/stasm-files/stasm4.pdf and we are on a limited time plan we need to…