Removed love.graphics.setLine and love.graphics.setPoint.

Both functions are redundant (setLineStyle+setLineWidth and setPointStyle+setPointSize do the same thing) and have misleading names.
This commit is contained in:
Alex Szpakowski
2013-06-14 10:12:09 -03:00
parent 5d2b20a662
commit 0a1c90f2d7
4 changed files with 4 additions and 70 deletions
-11
View File
@@ -325,12 +325,6 @@ public:
**/
void setLineStyle(LineStyle style);
/**
* Sets the type of line used to draw primitives.
* A shorthand for setLineWidth and setLineStyle.
**/
void setLine(float width, LineStyle style);
/**
* Gets the line width.
**/
@@ -352,11 +346,6 @@ public:
**/
void setPointStyle(PointStyle style);
/**
* Shorthand for setPointSize and setPointStyle.
**/
void setPoint(float size, PointStyle style);
/**
* Gets the point size.
**/