massive changes for revision 78

This commit is contained in:
benfry
2005-03-30 08:48:03 +00:00
parent f32040ef70
commit 1e4d61f341
17 changed files with 1345 additions and 341 deletions

View File

@@ -366,6 +366,7 @@ public class PLine implements PConstants
return;
}
/*
// draw antialias polygon lines for non stroked polygons
if (BLENDER && SMOOTH) {
// fix for endpoints not being drawn
@@ -376,6 +377,7 @@ public class PLine implements PConstants
drawline_blender(x_array[0], y_array[0], x_array[1], y_array[1]);
return;
}
*/
// draw normal strokes
if (SMOOTH) {
@@ -1114,6 +1116,7 @@ public class PLine implements PConstants
* Special "blender" line code by sami,
* used for anti-aliasing polygon edges
*/
/*
private void drawline_blender(double x0, double y0, double x1, double y1)
{
double tmp;
@@ -1279,10 +1282,5 @@ public class PLine implements PConstants
}
}
}
*/
}