The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
29 views

Reading and storing values from .OBJ files using C++

First, sorry for bad english. Well, I'm trying read the values of a .OBJ file (see here) and storing them in variables using this program: #include <iostream> #include <fstream> #include ...
-4
votes
0answers
32 views

obj. file doesn´t show the hole object

I have a problem with the object loader. It shows the object but only some triangles. It doesn´t fill the whole object. I tried with different .obj files and there is always something missing. So it ...
0
votes
2answers
52 views

.obj Models and normals

I been working on Three.js for a month now, mostly learning how it works and what can i do. Now, i'm trying to do a Car Expo by uploading .obj models of the cars. My problem is that some of the faces ...
0
votes
1answer
78 views

.obj : fatal error LNK1107: invalid or corrupt file: cannot read at 0x6592

I am trying to load an .obj model into my c++ opengl 3 code but for some reason it gives me this error : 1>Linking... 1>.\bunny.obj : fatal error LNK1107: invalid or corrupt file: cannot read at ...
0
votes
0answers
31 views

Learning openTK for a beginner

I know this isn't really a programming question and more of a discussion, but I am completely lost as to where to start learning openTK. My ultimate goal would to be able to display .obj models. I ...
0
votes
0answers
17 views

Open .obj in Azure Error [duplicate]

When I open .obj file in Windows Azure running Windows Server 2008 using Google chrome it gives error (eg: localhost/obj/test.obj) The error is shown below, may I know how can I solve this problem? ...
0
votes
1answer
73 views

Assimp and D3D model loading: Mesh not being displayed in D3D

I would like to load models into D3D using Assimp. I would like to understand more how Assimp handles indices as I am having trouble getting it to work with obj models in a form i understand. For ...
0
votes
0answers
320 views

Import textured 3d model from .obj file to iOs OpenGl E.S 2.0

Im am currently trying to convert 3D models in .obj format with texture to Objective c compatible code and render them with OpenGL E.S. 2.0. I am using [obj2opengl][1] from Heiko Behrens to convert ...
0
votes
1answer
103 views

object importing in Three.js

http://victorribeiro.com/modelo3D If you take a look at the example above, you can see a low poly model in .obj format with some texture baked on it. My question is: Is there a way that I import this ...
0
votes
1answer
70 views

how to use obj2opengl.pl

Now, I have a 3d model to .obj file extension, but I use JavaScript and obj2opengl.pl. Guide how to use the steps to export the files .h extension?
0
votes
0answers
92 views

Simple object loader using sfml and open gl

I have created an obj loader and checked that the model loader function is working. it outputs all the relevant information for me to think that this isn't the problem im having. Everything seems to ...
0
votes
0answers
110 views

OpenGL ES changing .obj during app runtime

I am developing a .obj viewer app on iOS, which is currently capable of displaying .obj file. For now, I am trying to add a new feature to dynamically change the .obj file to be view during runtime ...
0
votes
2answers
157 views

glDrawArrays doesn't draw anything?

Program successfully loads everything, code is completely dirty i accept but i am at least trying to draw something. but it seems something went wrong, no error, no display :P PS: projection, load ...
0
votes
1answer
166 views

About .obj 3d model format and VBO

Are the amounts of v, vn and vt same in an .obj model ? I ask it because i can only use one index per draw so i have that to use VBO struct VertexCoord { float x,y,z,w; float nx,ny,nz; float u,v; }; ...
0
votes
2answers
259 views

Load obj mtl Direct3D 11

Quick question, how do i load a .obj modle into directx 11 (d3d11.h) and also the .mtl file for materials. Thanks in advance.
2
votes
1answer
214 views

NumberFormatException: Invalid int: “ 1”

I'm trying to make a simple algorithm that converts .obj files to data which my program can use. This is the input String data example: "v 1.000000 -1.000000 -1.000000" "f 1 2 3 4" file = new ...
-2
votes
1answer
178 views

Parsing obj. files through opengl

I have an obj. file almost completed. im stuck on the final part with a single error. //load the filename textures (only BMP, R5G6B5 format) unsigned int objloader::loadTexture(const char* ...
0
votes
1answer
141 views

How do I get indexed vertex positions AND indexed vertex normals from wavefront .obj file into an OpenGL vertex shader?

I was trying to use two Vertex Buffer Objects (VBO) and two Index Buffer Objects (IBO) in a Vertex Array Object (VAO) for rendering data from a wavefront .Obj file containing a 3D model. The .obj file ...
0
votes
1answer
60 views

Two different static libs with the same .obj file

I'm working with visual studio, and I have two different static libs which share the same .obj file, but that .obj file is newer in one of them. I need both of these libs so i can't exclude one of ...
1
vote
3answers
116 views

How to modify existing assembly code generated from C

I'm writing some methods in C that must run very efficiently, so I'd like to manually edit some of the assembly code that is automatically generated. I know how to read the assembly code using gdb or ...
2
votes
1answer
212 views

Disassemble and use a .obj file

I have a course (reverse engineering) in uni and i have a homework. I got a .obj file (which was compiled with visual studio 2008), and i have to disassemble it, figure out the control structure and ...
0
votes
1answer
181 views

Computing Bounding Sphere after static .OBJ loading with Three.js

I got the following code for loading a simple, non-animated .OBJ with a .MTL into Three.js. It's very simple indeed and works well, but when I add the line with computeBoundingSphere(), it fails with ...
1
vote
2answers
497 views

Visual C++ 2010: LNK1104, LNK1181 - .obj Files Will Not Auto-Generate

I've recently downloaded 'Microsoft Visual C++ 2010 Express' edition on my 'Windows Vista Home Premium' machine. I'm a Java programmer trying to make the switch to C++, and this is quite discouraging: ...
0
votes
1answer
233 views

Only ambient light works reliably in jME

I've just started working with jME and I've created a 3d model in blender, and exported it to .obj and imported it in my jME application. Ambient light works fine, but the direct light I'm using, only ...
0
votes
0answers
91 views

Cannot successfully pass fortran object (.obj) through f2py

I have a fortran object file (.obj) that I would like to import into python using f2py. I dont have the source code for the object file, but I know the names of the subroutines it contains and how to ...
0
votes
2answers
291 views

Using GLM .obj loader in an Objective-C program

I am trying to use GLM to load a .obj object in my Objective-C Program (Xcode 4.4 Mac Os X). I have added the glm folder to my project. i try to import it using #import "glm/glm.hpp", but the program ...
1
vote
1answer
2k views

Loading 3D objects and textures for OpenGL ES rendering

I have some 3D objects stored in 3D editor application specific (Blender/Solid/3DS) file format exported to OBJ+MTL files with optional textures in PNG/JPG files. I would like to load these objects ...
2
votes
1answer
273 views

wavefront obj model loader indexing issues

Hello guys I am having a real hard time getting .obj wavefront files to render correctly using IBO. Now I wrote a parser, its very simple at the moment but it loads vertices and normals. If I bind ...
1
vote
1answer
1k views

convert .obj to .json format for 3D models

EDIT: Nevermind, the windows command prompt seems to be a bit easier to use. It worked. I'm trying to use the convert_ob_three.py python script file to convert .obj files to .js format. Heres what I ...
2
votes
1answer
526 views

In Python, how do I voxelize a 3D mesh

I need help on getting started in Python (which I almost know nothing of) to voxelize a 3D mesh generated from Rhino. The data input will be a .OBJ file and so will the output. The ultimate purpose ...
0
votes
1answer
73 views

Sketch Up and Open GL ES

Hi I have created a model in Sketch Up and want to export if for use in my open GL ES app. My question is. do I need to specify that I want the output to be all triangles and not polygons. As ...
0
votes
2answers
425 views

simple python algorithm needed in finding bounding box of meshes from an OBJ file

I'm trying a packing problem using Python and OBJ files. I'm a novice in python and not sure how to manipulate the OBJ file vertices to find the optimal bounding box. Any sample python code to get me ...
0
votes
1answer
211 views

Converted .obj to .h but missing .jpg

I convert one of the .obj model to .h file using obj2opengl.pl Should it have a .jpg that contain the color of the object? where or how should I get it? is it link to the .mtl file?
0
votes
1answer
315 views

Wavefront .obj .Mtl Structure

I'm trying to load a .obj File in Java with lwjgl without using any Library doing this. I created a Class to load the Model without Material and textures. That's easy. But now I want to laod the Model ...
0
votes
0answers
194 views

.obj material transparency

I am writing an .obj viewer.I am displaying the final model with OpenGL and everything works fine except that I don't know which GL function to use for the "Tr" value of the obj material. I am unable ...
0
votes
1answer
597 views

Creating .ase (ASCII EXPORT) file in blender or from .obj / .3ds file

I have a code that parses .ase files, but all the models I found were in .obg/.blender/.3ds formats. I couldn't find a way to translate them to each other how is tat possible to do?
0
votes
0answers
152 views

Java .OBJ file loading api

I need to load a obj file to my simple graphics library that works based on triangles(has color, and three vertexes), I'm not allowed to use OpenGL shapes and function for drawing but i'm ok with ...
0
votes
1answer
238 views

Use drawelements in OPENGL ES 1.x with .OBJ and multiple indices

I am teaching myself opengl es. I recently figured out how to parse/load a mesh from .OBJ file. I am now trying to apply a texture to it, I know I can only use one set of indices.. other than that I ...
0
votes
1answer
862 views

.OBJ Cube not rendering correctly in OPENGL ES

I have been looking for days to find an answer to my question. I Have looked through text books checked several websites etc... from what I can see my code SHOULD be rendering properly. I have ...
1
vote
1answer
460 views

Parsing error using min3d when loading .mtl and .obj files

Blender >> .obj, .mtl >> Java using min3D, openGL ES >> Android device What am I doing wrong or what is wrong with these .mtl or .obj files that would make get a parser error in min3d? So far I have ...
0
votes
1answer
2k views

use .obj file from blender 2.62+, in java with Eclipse for Android openGL ES

I have looked near and far for a solution to this problem. There seems to be ways to do this using a older version of Blender. I do not want to use an earlier version of Blender, I want to use 2.62.0 ...
1
vote
1answer
611 views

Rendering a mesh in OpenGL as a series of subgroups?

I'm completing a wavefront object parser and I want to use it to construct generic mesh objects. My engine uses OpenGL 4 and shaders to draw everything in my engine. My question is about how to ...
0
votes
1answer
246 views

Compare C++ char* characters for parsing .OBJ file

Forgive my C++ naivete. I need to compare two characters in the parsing of a .OBJ 3D object file. On each line iteration, the strcmp calls I make are never returning true. I have a feeling this is ...
0
votes
1answer
432 views

opengl es 2.0 texture coordinates

I've written a simple model viewer for android that parses a .obj wavefront file to create a 3d model. I'm exporting a simple icosphere that has been textured with a uv map from blender that comes in ...
0
votes
1answer
389 views

How to convert GL_TRIANGLES to GL_TRIANGLE_STRIP?

I have data from *.obj file. I know how draw with GL_TRIANGLES. How i can convert data for GL_TRIANGLE_STRIP? like glDrawArrays(GL_TRIANGLE_STRIP, 0, numberOfFaces); Thanks!
1
vote
2answers
292 views

While loading .obj file using libgdx got the error

While loading .obj file using libgdx I got the following error. Can you please tell me what I'm missing here? 03-06 15:50:13.901: E/AndroidRuntime(5503): FATAL EXCEPTION: GLThread 9 03-06 ...
-1
votes
1answer
567 views

openGL load multiple object

I have problem with insert multiple object. I load object but they are all in one place, for( int i = 0; i <= 5; i++ ) { glCallList( OBJECT_LIST[ i ] ); } glFlush(); glutSwapBuffers(); ...
0
votes
1answer
773 views

c/c++ application importing 3d models from modelling softwares at runtime

I am an openGL beginner. I need to build a c/c++ application which displays 3d models in augmented reality. For AR i'm using ARToolkit. In the app it must import 3d models built with modelling ...
0
votes
2answers
3k views

Importing Wavefront .obj files for android

What is the best way importing .obj files to android app created in Blender? I want the best and the easyest variant! How about a link to a tutorial?
0
votes
1answer
282 views

G++ OpenGL load multiple object

I have a problem to load more than one file. Obj in OpenGL. I try to load the cmd file, but only the last file is load. for(int i=0; i<2; i++){ if(!load_object(argv[i], OBJECT_LIST))){ ...

1 2