Tao.Ode SDK Documentation

Ode.dJointCreateNull Method 

Create a new "null" joint. There's no discussion of this in the docs or sourcecode. The only mention is the following entry in the ODE Changelog: 10/11/01 russ * joints can now return m=0 to be "inactive". added a "null" joint to test this. This suggests a null joint is mainly useful for testing and should probably be ignored by users of the bindings.

[Visual Basic]
Public Shared Function dJointCreateNull( _
   ByVal world As IntPtr, _
   ByVal group As IntPtr _
) As IntPtr
[C#]
public static IntPtr dJointCreateNull(
   IntPtr world,
   IntPtr group
);

Parameters

world
A dWorldID
group
A dJointGroupID

Return Value

A dJointID

See Also

Ode Class | Tao.Ode Namespace