Better ChainShape API consistency

--HG--
branch : box2d-update
This commit is contained in:
Bill Meltsner
2011-09-25 22:29:30 -04:00
parent de908f3354
commit 80fb261b5a
4 changed files with 19 additions and 17 deletions
+2 -2
View File
@@ -89,13 +89,13 @@ namespace box2d
* @param index The index of the vertex.
* @returns The specified vertex.
**/
b2Vec2 getVertex(int index) const;
b2Vec2 getPoint(int index) const;
/**
* Returns all of the vertices.
* @returns The vertices the shape comprises.
**/
const b2Vec2 * getVertices() const;
const b2Vec2 * getPoints() const;
};