[Polycasso-commit] SF.net SVN: polycasso:[179] trunk/polycasso/src/com/mebigfatguy/polycasso/ Impro
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-12-10 14:11:03
|
Revision: 179
http://polycasso.svn.sourceforge.net/polycasso/?rev=179&view=rev
Author: dbrosius
Date: 2009-12-10 14:10:56 +0000 (Thu, 10 Dec 2009)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/polycasso/src/com/mebigfatguy/polycasso/ImprovementType.java
Modified: trunk/polycasso/src/com/mebigfatguy/polycasso/ImprovementType.java
===================================================================
--- trunk/polycasso/src/com/mebigfatguy/polycasso/ImprovementType.java 2009-12-10 14:06:40 UTC (rev 178)
+++ trunk/polycasso/src/com/mebigfatguy/polycasso/ImprovementType.java 2009-12-10 14:10:56 UTC (rev 179)
@@ -23,17 +23,59 @@
* to make to an image.
*/
public enum ImprovementType {
+ /**
+ * add a new polygon to the list being rendered
+ */
AddPolygon,
+ /**
+ * remove a polygon from the list being rendered
+ */
RemovePolygon,
+ /**
+ * add a point to a random existing polygon
+ */
AddPoint,
+ /**
+ * remove a point from a random existing polygon
+ */
RemovePoint,
+ /**
+ * move a point from a random existing polygon
+ */
MovePoint,
+ /**
+ * pick a point at random and align it horizontally or vertically with a
+ * neighboring point for an existing polygon
+ */
RectifyPoint,
+ /**
+ * change the z order of a random existing polygon
+ */
ReorderPoly,
+ /**
+ * adjust the points of the polygon so they move towards the centroid of
+ * the polygon
+ */
ShrinkPoly,
+ /**
+ * adjust the points of the polygon so they move away from the centroid of
+ * the polygon
+ */
EnlargePoly,
+ /**
+ * translate the points of the polygon in an x or y direction
+ */
ShiftPoly,
- ChangeColor,
+ /**
+ * adjust a component of the color of a random existing polygon
+ */
+ ChangeColor,
+ /**
+ * adjust the transparency of a random existing polygon
+ */
ChangeAlpha,
+ /**
+ * completely change all attributes of a random existing polygon
+ */
CompleteChange;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|