C# Class FarseerPhysics.Dynamics.Joints.JointEdge

A joint edge is used to connect bodies and joints together in a joint graph where each body is a node and each joint is an edge. A joint edge belongs to a doubly linked list maintained in each attached body. Each joint has two joint nodes, one for each attached body.
Datei anzeigen Open project: prime31/Nez Class Usage Examples

Public Properties

Property Type Description
joint Joint
next JointEdge
other Body
prev JointEdge

Property Details

joint public_oe property

The joint.
public Joint joint
return Joint

next public_oe property

The next joint edge in the body's joint list.
public JointEdge,FarseerPhysics.Dynamics.Joints next
return JointEdge

other public_oe property

Provides quick access to the other body attached.
public Body other
return Body

prev public_oe property

The previous joint edge in the body's joint list.
public JointEdge,FarseerPhysics.Dynamics.Joints prev
return JointEdge