# HG changeset patch # User John Tsiombikas # Date 1420005424 -7200 # Node ID 773f89037a3587d10161550f68d1218592854f62 # Parent 73edd1b7c2da1634d4837088797058c8e7a90eae added copyright headers diff -r 73edd1b7c2da -r 773f89037a35 src/curve.cc --- a/src/curve.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/curve.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include "curve.h" diff -r 73edd1b7c2da -r 773f89037a35 src/curve.h --- a/src/curve.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/curve.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef CURVE_H_ #define CURVE_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/image.cc --- a/src/image.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/image.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include "image.h" diff -r 73edd1b7c2da -r 773f89037a35 src/image.h --- a/src/image.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/image.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef IMAGE_H_ #define IMAGE_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/main.cc --- a/src/main.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/main.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ // GLUT frontend #ifdef USE_GLUT diff -r 73edd1b7c2da -r 773f89037a35 src/opengl.h --- a/src/opengl.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/opengl.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef OPENGL_H_ #define OPENGL_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/opt.cc --- a/src/opt.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/opt.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include "opt.h" diff -r 73edd1b7c2da -r 773f89037a35 src/opt.h --- a/src/opt.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/opt.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef OPT_H_ #define OPT_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/rend_fast.cc --- a/src/rend_fast.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/rend_fast.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include "opengl.h" #include "rend_fast.h" diff -r 73edd1b7c2da -r 773f89037a35 src/rend_fast.h --- a/src/rend_fast.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/rend_fast.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef REND_FAST_H_ #define REND_FAST_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/renderer.cc --- a/src/renderer.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/renderer.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include "renderer.h" diff -r 73edd1b7c2da -r 773f89037a35 src/renderer.h --- a/src/renderer.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/renderer.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef RENDERER_H_ #define RENDERER_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/sdr.c --- a/src/sdr.c Wed Dec 31 07:53:53 2014 +0200 +++ b/src/sdr.c Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include diff -r 73edd1b7c2da -r 773f89037a35 src/sdr.h --- a/src/sdr.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/sdr.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef SDR_H_ #define SDR_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/viewer.cc --- a/src/viewer.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/viewer.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include "opengl.h" diff -r 73edd1b7c2da -r 773f89037a35 src/viewer.h --- a/src/viewer.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/viewer.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef VIEWER_H_ #define VIEWER_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/volume.cc --- a/src/volume.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/volume.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include diff -r 73edd1b7c2da -r 773f89037a35 src/volume.h --- a/src/volume.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/volume.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef VOLUME_H_ #define VOLUME_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/xfer_view.cc --- a/src/xfer_view.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/xfer_view.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include "opengl.h" diff -r 73edd1b7c2da -r 773f89037a35 src/xfer_view.h --- a/src/xfer_view.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/xfer_view.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef XFER_VIEW_H_ #define XFER_VIEW_H_ diff -r 73edd1b7c2da -r 773f89037a35 src/xfermap.cc --- a/src/xfermap.cc Wed Dec 31 07:53:53 2014 +0200 +++ b/src/xfermap.cc Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #include #include #include "xfermap.h" diff -r 73edd1b7c2da -r 773f89037a35 src/xfermap.h --- a/src/xfermap.h Wed Dec 31 07:53:53 2014 +0200 +++ b/src/xfermap.h Wed Dec 31 07:57:04 2014 +0200 @@ -1,3 +1,20 @@ +/* +glviewvol is an OpenGL 3D volume data viewer +Copyright (C) 2014 John Tsiombikas + +This program 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. + +This program 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 this program. If not, see . +*/ #ifndef XFERMAP_H_ #define XFERMAP_H_