Skip to content

Commit

Permalink
GPL'd code
Browse files Browse the repository at this point in the history
git-svn-id: http://codeswarm.googlecode.com/svn/trunk@34 eda9c206-d64f-0410-a2f2-67f3fa0499ed
  • Loading branch information
michael.ogawa committed Jun 22, 2008
1 parent 5d644f9 commit d908bba
Show file tree
Hide file tree
Showing 9 changed files with 827 additions and 0 deletions.
675 changes: 675 additions & 0 deletions COPYING

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions code_swarm/ColorAssigner.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

class ColorAssigner
{
ArrayList tests;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/ColorBins.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

class ColorBins
{
color [] colorList;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/Edge.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

class Edge
{
Node from;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/FileEvent.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

import java.util.*;

class FileEvent implements Comparable
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/FileNode.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

class FileNode extends Node
{
String name;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/Node.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

abstract class Node
{
float x, y;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/PersonNode.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

class PersonNode extends Node
{
String name;
Expand Down
19 changes: 19 additions & 0 deletions code_swarm/code_swarm.pde
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright 2008 Michael Ogawa
This file is part of code_swarm.
code_swarm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
code_swarm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with code_swarm. If not, see <http://www.gnu.org/licenses/>.
*/

//import processing.opengl.*;

import processing.xml.*;
Expand Down

0 comments on commit d908bba

Please sign in to comment.