Tagged Questions
The wavefront tag has no wiki summary.
3
votes
1answer
288 views
parsec-3.1.0 with custom token datatype
parsec-3.1.0 ( http://hackage.haskell.org/package/parsec-3.1.0 )
works with any token type. However there are combinators like Text.Parsec.Char.satisfy that are only defined for Char datatype. There ...
3
votes
1answer
5k views
Do Wavefront .obj files support animation?
How does one export a 3D Studio animated model to OBJ format (if possible)? What will be the resulting file like? How would I read that?
2
votes
1answer
334 views
Creating .obj files in Java
is there a Java library in existence for creating .obj files. There are many for loading .obj files for use with APIs like JOGL but I can't find anything to do with creating an .obj file.
2
votes
1answer
1k views
Storing a struct in an NSArray
Back with my daily silly question. Today I'm trying to put a struct in an NSArray. Alright, that's easy, wrap it in a NSData. If you know me, you know you're about to see code. In this example, I'm ...
2
votes
2answers
3k views
Mapping Wavefront .obj's vt to OpenGL texture coordinates
an artist friend has sent me an .obj file exported by 3DS Max 2009 which contains three texture coordinates as parameters to the vt command. And that's correct according to .obj specification. ...
1
vote
2answers
51 views
Troubles parsing Wavefront .obj texture coordinates
I'm coding my own .obj parser in objc for OpenGL ES 2.0 to get a better understanding on how this OpenGLES thing works. Loading the vertices and showing a model with vertex colors on it works like a ...
1
vote
1answer
132 views
flickering while rendering a 3D object (.obj file) using OpenGL
While attempting to render a 3D object using OpenGL (and the GLFW library), the model experiences lots of flickering. Im reading the .obj file using a library that I've written on my own.
Written ...
1
vote
4answers
407 views
Parsing a wavefront .obj file using c++
While trying to a parse a wavefront .obj file, I thought of two approaches
Create an 2D array the size of the number of vertices. When a face uses a vertex, get it's coordinates from the array.
Get ...
1
vote
0answers
136 views
Is there a library for converting Wavefront .obj files to XAML?
I have a large number of Wavefront .obj files that I need to convert to XAML MeshGeometry3D elements. I can do this manually by importing them in Microsoft Expression Blend and copying the XAML, but ...
1
vote
1answer
890 views
Problems Using Wavefront .obj's texture coordinates in Android OpenGL ES
I'm writing an android app using openGL ES. I followed some online tutorials and managed to load up a textured cube using hard-coded vertices/indices/texture coordinates
As a next step I wrote a ...
1
vote
1answer
76 views
Assign mirror operation to vertices array
I understand the math in flipping vertex coordinates in a .obj vertices array to get the mirrored coordinate across a plane/axis. But, how do you populate the vertices array for an actual mirror ...
0
votes
0answers
14 views
lighweight wavefront obj model parser
I am looking for a lightweight c++ wavefront obj parser. In addition, I need the following capabilities:
Join the adjacent planar triangles to form polygons.
Read the curves as well from obj file
...
0
votes
0answers
36 views
iPhone wavefront object not working
i've tried loading a wavefront .obj 3d model to my iphone app using Jeff LaMarche's obj loader and i'mg getting a bad rendered 3d model, i can see all the triangles in any position and they all appear ...
0
votes
1answer
172 views
Cinema 4D .obj files do not import correctly
I have a parser written in ActionScript for importing .obj files. I then render them in Molehill, which is awesome. So far, I can import what I think are standard .obj files with vertices in the x, ...
0
votes
1answer
104 views
Save large size arrays to file on android
I am creating android application with 3D OpenGL ES view which will consist from 3D models imported from wavefront obj files.
A typical Wavefront obj file will contain only triangulated objects and it ...
0
votes
1answer
74 views
do I need license to used .3ds .obj or .skp files with my own code
I'm writing parsers for different kinds of 3D object files like .3ds .obj and .skp.
Do I need a license to read these formats with my own code?
I couldn't any documents that says that I need a ...
0
votes
1answer
247 views
Number of wavefronts that can fit on a SIMD
I'm reading an article about an AMD GPU and am confused by a particular example. Given a SIMD unit with a number of registers, how many wavefronts can occupy a SIMD if they require x amount of ...
0
votes
0answers
546 views
How to load maya models exported to wavefront (.obj) with android-gl?
Me and friends are currently working on an android project (battleship game) where we want to load and render our own ship models. We made them in maya and exported them to wavefront with the built-in ...
0
votes
2answers
119 views
When loading an OBJ i get this
and this time i have loaded a model successfully! yay!!
but theres a slight problem, one that i had with another obj loader...
heres what it looks like:
...
0
votes
1answer
470 views
Loading 'indices' from Wavefront OBJ format
I'm developing an Android application with OpenGL ES 2.0.
I want to load an export made with Blender 2.49b in Wavefront OBJ format. I have identified verxtex position, normal and texture.
I want to ...
0
votes
1answer
261 views
Wavefront OBJ: Converting from Objective-C string to C struct apparently incorrect
I'm writing a Wavefront object loader for work because I don't feel comfortable using code I don't understand in professional projects. After the obvious first step, sorting out which parts are which, ...
0
votes
1answer
225 views
WaveFront OBJ converted from LightWave taking forever to render on iPhone
I'm working on a project where I need to render a 3D human body on an iOS device. The 3D object was built in Adobe LightWave and is 7.4MB. I opened it in Blender and exported it as OBJ/MTL pair which ...
0
votes
1answer
609 views
Are there open source implementations of Wavefront OBJ loaders for the iPhone?
I would like to display 3-D models of building interiors in my iPhone application, but they are in Wavefront OBJ format. Is there an open source implementation of a Wavefront OBJ loader that I could ...
0
votes
1answer
796 views
DirectX 10 Mesh buffer not aligned problem? How to calculate wavefront obj index?
I wrote a program to render a wavefront obj model in DirectX 10
I loaded the vertexes data as following desc
D3D10_INPUT_ELEMENT_DESC defaultLayout[] =
{
{"POSITION", 0, ...
-1
votes
1answer
467 views
Rendering Wavefront OBJ and associated material MTL using OpenGL
I have these files: sample.obj, sample.mtl and a folder sample containing image jpg. Can somebody give me an example code of opengl texture mapping using above input.