obj

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? ...

Loading an .obj with JOGL

I have found may tutorials on loading an obj, but nothing on how to load it and use it with java, anyone have links to any useful tutorials? ...

Mapping Wavefront .obj's vt to OpenGL texture coordinates

Hi, 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. However, I'm not sure how to map U-V-W coordinates that are provided for a regular 2D .jpg texture. This is relatively important for me, sin...

How do I prevent Visual Studio from creating obj folders in my source directory?

I've set the OutputPath, IntermediateOutputPath, and BaseIntermediateOutputPath tags in all my csproj files. Despite that, Visual Studio creates extra "obj" folders in my source directories. As far as I can tell, it creates the directory obj\Debug\TempPE and then leaves it empty. I don't mind Visual Studio creating all sorts of crap, bu...

One class for one view

This may be a foolish question.but I want to know,,,, In my iPhone Application I have so many classes and Xib files (Like 12 to 15).Is it ok to have it like that???... Is there any limitation for number of classes......?????..... Does it affect the performance of the app????.... Thanks. ...

Build C/C++ library to link it into delphi application... How?

Hi, if I have a source of library written in C/C++ (lets say its libxml2), now I'd like to build it, and link it into the delphi application... I know it is possible, since Delphi Zlib does it ( http://www.dellapasqua.com/delphizlib/ ) ... But my question is, how to prepare those .obj files? Thanks in advance m. ...

Linking C .obj files into Delphi application, resolving standard C dependencies.

Hi, I compiled libxml2 with BCC 5.5 command line compiler, now I have lots of .obj files which I'd like to link into my Delphi application. Unfortunately, I get lots of "Unsatisfied forward or external declaration" errors, pointing to standard C library functions like memcpy, open, recv etc ... What should I do to compile it correctly?...

MDX C# Loading Wavefront OBJs

I'm trying to load and display (EXTREMELY SIMPLY) a wavefront OBJ file. I have the parser working 100%... it loads the data from the files and stores them in structures in the program. Now is the part where I am utterly failing to find any information on, the target data structure. I have no clue how to use Vertex Buffers and Index Bu...

how to get dynamic values from uitableview cells ?

If i have to show 10 or 30 or 100 strings in a uitableview..How to get the selected raw from that.. My value for each row is different .I mean i have to set the row value and display name from a 2 dimenional NSArray.. Somebody please help me.. ...

Sleep command in tabbar based application is not working properly

HI , i am working on a tab bar navigation based application. once the application loaded i am loading a RSS feed content from a site in its first tab. I am using autoreleasepol to load the RSS feed inside the view controller and i have the sleeping time as 2 seconds, but the initial loading screen taking more anywhere between 3 to 7 se...

What build param(s) to use so VS 2010 can gen .obj & link .objs but NOT create an .exe?

Question title pretty much asks it all. I know I could set the project to be a .lib build and have it fail to build/link a .lib .... and the .objs tend to be in the appropriate config dir That seems like a shi*-a** backdoor way to get VS to gen objs Is there a flag/param I can set somewhere in the property sheet properties/options for ...

Android + OpenGl + Blender, is possible?

Is possible uses Blender (or another tool) to make easy the job in works with android+opengl? Thanks, Celso. ...

how to get the user list those who are access my facebook application through my iphone apps

Hi, i am creating an iphone apps which need to use facebook login details to enter into the apps as Groupon iphone apps. In Groupon, they are using FBConnect to access their facebook application, based on the login success they are allowing me to access their deals. I had used FBConnect package to post some message to user's wall using...

how do obj files work once loaded.

Can anyone provide me with a high level over view of how obj or other 3d formats work. I'm trying to learn 3D programming for games but all the tutorials i've found so far only show how to create and manipulate primitives such as a sphere etc. I'm using java but i also know C# and C++ i've just never done games programming or any 3D mode...

iPad search bar bad memory access?

Hello all, So I am trying to implement a search bar in my app and am very close but can't seem to figure out where this memory error is occurring. This is what part of my search method looks like: filters = [[NSMutableArray alloc] init]; NSString *searchText = detailSearch.text; NSMutableArray *searchArray = [[NSMutableArray alloc] in...

multiple C++ deletion of a memory pointed by multiple objects

Another c++ pointer deletion question is in the following example: class Foo { public: int *p; ~Foo() { delete p; p = NULL; } }; Foo *f1 = new Foo(); Foo *f2 = new Foo(); f1->p = new int(1); f2->p = f1->p; delete f2; // ok delete f1; // no error? Why I did not get error when calling "delete f1"? didn't I delete th...