Skip to content

Commit

Permalink
Moving Slice Lines ArrayList into constructor in favour of SSPath. Re…
Browse files Browse the repository at this point in the history
…moving Area2D and Poly2D; not used anywhere and just getting in the way.
  • Loading branch information
clothbot committed Sep 8, 2010
1 parent 5b51737 commit aa2db19
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 165 deletions.
43 changes: 0 additions & 43 deletions Area2D.pde

This file was deleted.

120 changes: 0 additions & 120 deletions Poly2D.pde

This file was deleted.

3 changes: 1 addition & 2 deletions Slice.pde
Expand Up @@ -2,7 +2,6 @@
//
class Slice {

ArrayList Lines;
SSPath SlicePath;

//Right now this is all in the constructor.
Expand All @@ -12,7 +11,7 @@ class Slice {
Slice(Mesh InMesh, float ZLevel) {

ArrayList UnsortedLines;
// ArrayList Lines;
ArrayList Lines;
SSLine Intersection;
UnsortedLines = new ArrayList();
for(int i = InMesh.Triangles.size()-1;i>=0;i--)
Expand Down
1 change: 1 addition & 0 deletions SuperSkein.pde
Expand Up @@ -4,6 +4,7 @@
//Note! Only takes binary-coded STL. ASCII
//STL just breaks it for now.
import processing.dxf.*;
import java.awt.geom.AffineTransform;
import java.awt.geom.PathIterator;

//The config file takes precedence over these parameters!
Expand Down

0 comments on commit aa2db19

Please sign in to comment.