From 25cd00a6b1d4f62e856346393972298f01dbabe3 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Sat, 25 Jul 2015 22:58:03 -0700 Subject: [PATCH] standardize license and project info in scad files --- 3d-printables/angle-bracket-data.scad | 26 +++++++++++++++-- 3d-printables/angle-bracket.scad | 26 +++++++++++++++-- 3d-printables/caster-standoff-data.scad | 26 +++++++++++++++-- 3d-printables/caster-standoff.scad | 26 +++++++++++++++-- 3d-printables/deck-data.scad | 26 +++++++++++++++-- 3d-printables/deck-holder-data.scad | 26 +++++++++++++++-- 3d-printables/deck-holder.scad | 27 ++++++++++++++--- 3d-printables/deck.scad | 26 +++++++++++++++-- 3d-printables/motor-mount-data.scad | 26 +++++++++++++++++ 3d-printables/motor-mount.scad | 26 +++++++++++++++-- 3d-printables/nut-data.scad | 26 ++++++++++------- 3d-printables/nut.scad | 27 ++++++++++++++++- .../sonar-table-top-holder-data.scad | 26 +++++++++++++++-- 3d-printables/sonar-table-top-holder.scad | 26 +++++++++++++++-- 3d-printables/wheel-data.scad | 26 +++++++++++++++-- 3d-printables/wheel.scad | 26 +++++++++++++++-- 3d-printables/whole-robot-data.scad | 25 ++++++++++++++++ 3d-printables/whole-robot.scad | 29 +++++++++++++++---- 3d-printables/wire-jig-data.scad | 25 ++++++++++++++++ 3d-printables/wire-jig.scad | 26 +++++++++++++++-- 20 files changed, 463 insertions(+), 60 deletions(-) diff --git a/3d-printables/angle-bracket-data.scad b/3d-printables/angle-bracket-data.scad index bd69d59..eecfac9 100644 --- a/3d-printables/angle-bracket-data.scad +++ b/3d-printables/angle-bracket-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ // this needs to be updated with actual measurements length = 5; @@ -25,3 +28,20 @@ module bracket(length, width, thickness) { rotate([90, 0, 0]) { translate([0, - thickness / 2, - thickness / 2]) { plate(length, width, thickness); } } } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/angle-bracket.scad b/3d-printables/angle-bracket.scad index 788e6b4..cdbd4b7 100644 --- a/3d-printables/angle-bracket.scad +++ b/3d-printables/angle-bracket.scad @@ -1,9 +1,29 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ include bracket(length, width, thickness); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/caster-standoff-data.scad b/3d-printables/caster-standoff-data.scad index e1e46e8..803fb60 100644 --- a/3d-printables/caster-standoff-data.scad +++ b/3d-printables/caster-standoff-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ use @@ -93,3 +96,20 @@ module caster_standoff() { deck_flange_reinforcement(); } translate([0, 0, standoff_lower_portion_height]) { ball_holder(); } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/caster-standoff.scad b/3d-printables/caster-standoff.scad index 71ce352..eb16cba 100644 --- a/3d-printables/caster-standoff.scad +++ b/3d-printables/caster-standoff.scad @@ -1,9 +1,29 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ include caster_standoff(); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/deck-data.scad b/3d-printables/deck-data.scad index e203cd1..ce29f8c 100644 --- a/3d-printables/deck-data.scad +++ b/3d-printables/deck-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ // all measurements are in mm unless stated otherwise @@ -44,3 +47,20 @@ module deck_2d(width, length, pitch, hole, hole_type, center = false) { module deck(width, length, depth, pitch, hole, hole_type, center = false) { linear_extrude(height = depth) { deck_2d(width, length, pitch, hole, hole_type, center); } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/deck-holder-data.scad b/3d-printables/deck-holder-data.scad index c6a0cce..3ac45f6 100644 --- a/3d-printables/deck-holder-data.scad +++ b/3d-printables/deck-holder-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ /* this holds an hc-sr04 sonar sensor to a 3/16 inch deck. @@ -68,6 +71,23 @@ module deck_holder() { difference() { square([deck_holder_length, deck_holder_height]); translate([sonar_holder_depth - 0.15, sonar_holder_depth - 0.15]) { + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ square(deck_depth + 0.3); } translate([deck_holder_height, sonar_holder_depth - 0.3]) { square([deck_holder_length - (deck_holder_height), diff --git a/3d-printables/deck-holder.scad b/3d-printables/deck-holder.scad index d993635..476644c 100644 --- a/3d-printables/deck-holder.scad +++ b/3d-printables/deck-holder.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ /* this holds an hc-sr04 sonar sensor to a 3/16 inch deck. @@ -14,7 +17,6 @@ $fn = 60; -use include for (jj = [0:0]) { @@ -23,3 +25,20 @@ for (jj = [0:0]) { jj * (26 + deck_depth * 3), 0]) { deck_holder(); } } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/deck.scad b/3d-printables/deck.scad index e45ce6e..564d2c0 100644 --- a/3d-printables/deck.scad +++ b/3d-printables/deck.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ include @@ -12,3 +15,20 @@ deck_2d(deck_width, deck_grid_hole, deck_hole_type, center = deck_centered); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/motor-mount-data.scad b/3d-printables/motor-mount-data.scad index ccf88f5..13843ea 100644 --- a/3d-printables/motor-mount-data.scad +++ b/3d-printables/motor-mount-data.scad @@ -1,3 +1,12 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available here: +// https://challenge-bot.com/ + // from schematic http://goo.gl/96RKol collar_radius = 9.2 / 2 + 0.25; nubbin_radius = 4.48 / 2; @@ -43,3 +52,20 @@ module motor_mount() { bracket_holes(); } translate([1, mount_total_y - motor_height / 2 - 3, -0.05]) { motor_holes(); } } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/motor-mount.scad b/3d-printables/motor-mount.scad index f70fb99..f225e90 100644 --- a/3d-printables/motor-mount.scad +++ b/3d-printables/motor-mount.scad @@ -1,11 +1,31 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ $fn = 60; include motor_mount(); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/nut-data.scad b/3d-printables/nut-data.scad index c18f91e..ca44fbd 100644 --- a/3d-printables/nut-data.scad +++ b/3d-printables/nut-data.scad @@ -2,6 +2,10 @@ Copyright (C) 2015 Daniel Watson See the end of the file for license conditions. */ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available here: +// https://challenge-bot.com/ module nut_2d(size) { side_length = size * sin(30) / sin(120); @@ -14,18 +18,18 @@ module nut(size, height) { nut_2d(size); } } /* -This file is part of challenge-bot. + This file is part of challenge-bot. -Printables is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. -GNU Affero Emacs 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 Affero General Public License for more details. + GNU Affero Emacs 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 Affero General Public License for more details. -You should have received a copy of the GNU Affero General Public License -along with Printables. If not, see . + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . */ diff --git a/3d-printables/nut.scad b/3d-printables/nut.scad index 7370954..d6b5a94 100644 --- a/3d-printables/nut.scad +++ b/3d-printables/nut.scad @@ -1,3 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available here: +// https://challenge-bot.com/ include @@ -6,4 +14,21 @@ size = 4; nut_2d(size); translate([size + 1, 0, 0]){ - square(size, center = true);} \ No newline at end of file + square(size, center = true);} + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/sonar-table-top-holder-data.scad b/3d-printables/sonar-table-top-holder-data.scad index 5b17cbf..2bfe1b0 100644 --- a/3d-printables/sonar-table-top-holder-data.scad +++ b/3d-printables/sonar-table-top-holder-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ /* this holds an hc-sr04 sonar sensor to a 3/16 inch deck. @@ -100,3 +103,20 @@ module corner_rounder_2d(radius, corner_name = "top-left") { module corner_rounder(radius, height, corner_name = "top-left") { linear_extrude(height = height) { corner_rounder_2d(radius, corner_name); } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/sonar-table-top-holder.scad b/3d-printables/sonar-table-top-holder.scad index bc7a96b..7834bc6 100644 --- a/3d-printables/sonar-table-top-holder.scad +++ b/3d-printables/sonar-table-top-holder.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ /* this holds an hc-sr04 sonar sensor to a 3/16 inch deck. @@ -17,3 +20,20 @@ $fn = 60; include sonar_holder(); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/wheel-data.scad b/3d-printables/wheel-data.scad index f186d85..51646b0 100644 --- a/3d-printables/wheel-data.scad +++ b/3d-printables/wheel-data.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ // use $fn = 20 while developing, 100 when about to print // 20 will make previews fast @@ -77,3 +80,20 @@ module wheel(radius, shaft_flat_width, wall_width, width - wheel_square_spoke_thickness); } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/wheel.scad b/3d-printables/wheel.scad index 656ae16..2ed0f89 100644 --- a/3d-printables/wheel.scad +++ b/3d-printables/wheel.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ // use $fn = 20 while developing, 100 when about to print // 20 will make previews fast @@ -17,3 +20,20 @@ wheel(wheel_radius, motor_shaft_flat_width, wall_width, tread_radius); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/whole-robot-data.scad b/3d-printables/whole-robot-data.scad index 80f1dc1..8ab7d9c 100644 --- a/3d-printables/whole-robot-data.scad +++ b/3d-printables/whole-robot-data.scad @@ -1,4 +1,29 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available here: +// https://challenge-bot.com/ include include include + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/whole-robot.scad b/3d-printables/whole-robot.scad index 8f3acea..8ea82a2 100644 --- a/3d-printables/whole-robot.scad +++ b/3d-printables/whole-robot.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ // use $fn = 20 while developing, 100 when about to print // 20 will make previews fast @@ -18,7 +21,23 @@ include between_parts = 1; - deck_holder(); translate([deck_holder_length + between_parts, 0, 0]){ - sonar_holder();} \ No newline at end of file + sonar_holder();} + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/wire-jig-data.scad b/3d-printables/wire-jig-data.scad index 1c51f0c..f23440a 100644 --- a/3d-printables/wire-jig-data.scad +++ b/3d-printables/wire-jig-data.scad @@ -1,3 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available here: +// https://challenge-bot.com/ $fn = 20; include @@ -28,3 +36,20 @@ module wire_channel_groove(width, height, wire_radius, length) { rotate(a = 90, v = [1, 0, 0]) { linear_extrude(height = length) { wire_channel_groove_2d(width, height, wire_radius); } } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ diff --git a/3d-printables/wire-jig.scad b/3d-printables/wire-jig.scad index 59f8434..4b9bd73 100644 --- a/3d-printables/wire-jig.scad +++ b/3d-printables/wire-jig.scad @@ -1,8 +1,11 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ include @@ -12,3 +15,20 @@ for (ii = [0:len(wire_lengths) - 1]) { wire_channel_height, wire_radius, wire_lengths[ii]); } } + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ -- 2.30.2