Tagged Questions

PhysX is a 3rd-party physics engine owned by NVIDIA and most commonly used in the video game industry.

learn more… | top users | synonyms

2
votes
1answer
103 views

How does Unity3D use PhysX without requiring the PhysX runtime?

When I looked at using PhysX, one had to install a runtime a bit like installing .NET. However I note Unity3D employs PhysX and Unity3D plugin installation is fairly simple and doesn't appear to add ...
2
votes
3answers
548 views

PhysX: Joint friction/“stiff” joints

I'm working with physx (trying to add ik to ragdoll) at the moment. For some reason, all ragdoll joints are frictionless, and as a result, ragdoll tend to "wobble", especially when it is hung in the ...
2
votes
5answers
625 views

PhysX for massive performance via GPU?

I recently compared some of the physics engine out there for simulation and game development. Some are free, some are opensource, some are commercial (1 is even very commercial $$$$). Havok, Ode, ...
1
vote
1answer
176 views

Nvidia Physx on iPhone

is it possible? if yes, how? if not, how does unity3d make it happen?
1
vote
2answers
168 views

instantly sleeping stack of dynamic objects

My scene has a number of stacks of dynamic objects. When the simulation starts, it takes a while for these to "resolve" before they become sleeping islands. This affects performance significantly for ...
1
vote
2answers
275 views

A rocket following the tracks height. Not Homing Missile

What I am trying to create is a rocket that will hug the track in a straight direction. ie) The rocket travels in a straight direction and can orientate based on its local x axis. This is so it can go ...
1
vote
2answers
278 views

Is there a way to ray cast with PhysX library without using a const NxRay?

I noticed that there are alot of funcitons that can raycast but they seem to use a const NxRay My problem I am having is having a vehicle that is casting a ray downwards as being my NxRay. It is not ...
1
vote
4answers
374 views

First time ever creating a Terrain

First night at taking a look at different ways to create Terrain. I'm wanting to work on a racing project and was wondering if there was a way to create a 3D race track some how. We plan on using ...
1
vote
1answer
168 views

PhysX - Compiling Error

I'm just trying to build the Lesson 101 from PhysX tutorials. I'm using VS2008 and this is the compile error im getting. Not sure what to do...? Im using Windows 7. 1>------ Build started: ...
0
votes
0answers
15 views

PhysX Capsule Character Controller floating above ground

I am using PhysX Version 3.0.2 in the simulation package I'm working on, and I've encountered some bizarre behavior with the capsule character controller. When I set the controller's height and ...
0
votes
0answers
42 views

With PhysX API, can I find the force that is about to be applied to an actor?

There doesn't seem to be a NxActor::getForce() function in the API. Is there a way to get the force vector that was added to the actor via NxActor::addForce() since the last simulation step? I ...
0
votes
0answers
70 views

2D physics constraints with PhysX 3.x

In previous versions of PhysX (eg. 2.8.4.x) you could constrain the simulation to a 2D plane quite easily with these body flags: NX_BF_FROZEN_POS_X, NX_BF_FROZEN_ROT_Y, etc... I am now using PhysX ...
0
votes
0answers
20 views

How to get the mass of compound rigid body parts in PhysX 3.1

I need to retrieve a mass information for every geometry part of a compound dynamic rigid body. Is there any way to do that? Several types of geometry in PhysX have this information (PxConvexMesh, ...
0
votes
2answers
44 views

What is the trailing x

I noticed that their are a lot of technologies that uses X in their names like Directx and PhysX and X server ... is there a something common? Or is there any reason to choose X?
0
votes
0answers
393 views

QT Creator integration with Physx

Is there any way to integrate Qt and Physx so i can use Physx inside Qt Creator?
0
votes
0answers
88 views

How to set joint drive orientation knowing actors orientations?

I am trying to calculate the goal orientation of a d6 joint driver to obtain a defined position of the 2 actors attached by the joint. I KNOW the original orientations of the actors and their wanted ...
0
votes
1answer
101 views

A good reference book or movie for Nvidia Apex

I recently downloaded Nvidia Apex PhysX Lab, but I can't get it to work for me! The tool is just so complicated! Does anyone have a good reference book or a full movie on how to work with Apex? The ...
0
votes
1answer
93 views

NVIDIA GPUs and PhysX engine

How is the NVIDIA PhysX engine implemented in the NVIDIA GPUs: It's a co-processor or the physical algorithms are implemented as fragment programs to be executed in the GPU pipeline ?
0
votes
1answer
819 views

How to use PhysX™ Candy Wrapper in XNA

I need some basic tutorial or guide on how to use "PhysX™ Candy Wrapper". On their website I couldn't find anything useful what so ever. It has been a long time since I touched 3D programming and I ...
0
votes
1answer
249 views

Getting position of PhysX wheel

I'm using the NxWheelShape to simulate wheels on my car. When I render the wheel model, I use shape->getGlobalPose() to get a 4x4 matrix and render the wheel there. However this gives me the position ...