#include <b2ChainShape.h>
Public Attributes | |
int32 | m_count |
The vertex count. More... | |
bool | m_hasNextVertex |
bool | m_hasPrevVertex |
b2Vec2 | m_nextVertex |
b2Vec2 | m_prevVertex |
b2Vec2 * | m_vertices |
The vertices. Owned by this class. More... | |
Public Attributes inherited from b2Shape | |
float32 | m_radius |
Type | m_type |
Additional Inherited Members | |
Public Types inherited from b2Shape | |
enum | Type { e_circle = 0, e_edge = 1, e_polygon = 2, e_chain = 3, e_typeCount = 4 } |
A chain shape is a free form sequence of line segments. The chain has two-sided collision, so you can use inside and outside collision. Therefore, you may use any winding order. Since there may be many vertices, they are allocated using b2Alloc. Connectivity information is used to create smooth collisions. WARNING: The chain will not collide properly if there are self-intersections.
Definition at line 32 of file b2ChainShape.h.
|
inline |
Definition at line 95 of file b2ChainShape.h.
b2ChainShape::~b2ChainShape | ( | ) |
The destructor frees the vertices using b2Free.
Definition at line 24 of file b2ChainShape.cpp.
void b2ChainShape::Clear | ( | ) |
Clear all data.
Definition at line 29 of file b2ChainShape.cpp.
|
virtual |
Implement b2Shape. Vertices are cloned using b2Alloc.
Implements b2Shape.
Definition at line 91 of file b2ChainShape.cpp.
|
virtual |
|
virtual |
Chains have zero mass.
Implements b2Shape.
Definition at line 186 of file b2ChainShape.cpp.
Create a chain with isolated end vertices.
vertices | an array of vertices, these are copied |
count | the vertex count |
Definition at line 58 of file b2ChainShape.cpp.
Create a loop. This automatically adjusts connectivity.
vertices | an array of vertices, these are copied |
count | the vertex count |
Definition at line 36 of file b2ChainShape.cpp.
|
virtual |
void b2ChainShape::GetChildEdge | ( | b2EdgeShape * | edge, |
int32 | index | ||
) | const |
Get a child edge.
Definition at line 109 of file b2ChainShape.cpp.
|
virtual |
Establish connectivity to a vertex that follows the last vertex. Don't call this for loops.
Definition at line 85 of file b2ChainShape.cpp.
Establish connectivity to a vertex that precedes the first vertex. Don't call this for loops.
Definition at line 79 of file b2ChainShape.cpp.
|
virtual |
This always return false.
Implements b2Shape.
Definition at line 141 of file b2ChainShape.cpp.
int32 b2ChainShape::m_count |
The vertex count.
Definition at line 89 of file b2ChainShape.h.
bool b2ChainShape::m_hasNextVertex |
Definition at line 92 of file b2ChainShape.h.
bool b2ChainShape::m_hasPrevVertex |
Definition at line 92 of file b2ChainShape.h.
b2Vec2 b2ChainShape::m_nextVertex |
Definition at line 91 of file b2ChainShape.h.
b2Vec2 b2ChainShape::m_prevVertex |
Definition at line 91 of file b2ChainShape.h.
b2Vec2* b2ChainShape::m_vertices |
The vertices. Owned by this class.
Definition at line 86 of file b2ChainShape.h.