mirror of
https://github.com/love2d/love.git
synced 2026-08-18 03:34:23 +02:00
Finish wrapper function renames
This commit is contained in:
@@ -56,7 +56,6 @@ public:
|
||||
* @param y The y-coordinate of the vertex.
|
||||
**/
|
||||
void setNextVertex(float x, float y);
|
||||
void setNextVertex();
|
||||
|
||||
/**
|
||||
* Establish connectivity to a vertex that precedes
|
||||
@@ -65,17 +64,16 @@ public:
|
||||
* @param y The y-coordinate of the vertex.
|
||||
**/
|
||||
void setPreviousVertex(float x, float y);
|
||||
void setPreviousVertex();
|
||||
|
||||
/**
|
||||
* Gets the vertex that follows the last vertex.
|
||||
**/
|
||||
bool getNextVertex(float &x, float &y) const;
|
||||
void getNextVertex(float &x, float &y) const;
|
||||
|
||||
/**
|
||||
* Gets the vertex that precedes the first vertex.
|
||||
**/
|
||||
bool getPreviousVertex(float &x, float &y) const;
|
||||
void getPreviousVertex(float &x, float &y) const;
|
||||
|
||||
/**
|
||||
* Returns a child EdgeShape.
|
||||
|
||||
Reference in New Issue
Block a user