glviewvol

changeset 12:773f89037a35

added copyright headers
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 31 Dec 2014 07:57:04 +0200
parents 73edd1b7c2da
children 64f874301b53
files src/curve.cc src/curve.h src/image.cc src/image.h src/main.cc src/opengl.h src/opt.cc src/opt.h src/rend_fast.cc src/rend_fast.h src/renderer.cc src/renderer.h src/sdr.c src/sdr.h src/viewer.cc src/viewer.h src/volume.cc src/volume.h src/xfer_view.cc src/xfer_view.h src/xfermap.cc src/xfermap.h
diffstat 22 files changed, 374 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/src/curve.cc	Wed Dec 31 07:53:53 2014 +0200
     1.2 +++ b/src/curve.cc	Wed Dec 31 07:57:04 2014 +0200
     1.3 @@ -1,3 +1,20 @@
     1.4 +/*
     1.5 +glviewvol is an OpenGL 3D volume data viewer
     1.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     1.7 +
     1.8 +This program is free software: you can redistribute it and/or modify
     1.9 +it under the terms of the GNU General Public License as published by
    1.10 +the Free Software Foundation, either version 3 of the License, or
    1.11 +(at your option) any later version.
    1.12 +
    1.13 +This program is distributed in the hope that it will be useful,
    1.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.16 +GNU General Public License for more details.
    1.17 +
    1.18 +You should have received a copy of the GNU General Public License
    1.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1.20 +*/
    1.21  #include <algorithm>
    1.22  #include "curve.h"
    1.23  
     2.1 --- a/src/curve.h	Wed Dec 31 07:53:53 2014 +0200
     2.2 +++ b/src/curve.h	Wed Dec 31 07:57:04 2014 +0200
     2.3 @@ -1,3 +1,20 @@
     2.4 +/*
     2.5 +glviewvol is an OpenGL 3D volume data viewer
     2.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     2.7 +
     2.8 +This program is free software: you can redistribute it and/or modify
     2.9 +it under the terms of the GNU General Public License as published by
    2.10 +the Free Software Foundation, either version 3 of the License, or
    2.11 +(at your option) any later version.
    2.12 +
    2.13 +This program is distributed in the hope that it will be useful,
    2.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.16 +GNU General Public License for more details.
    2.17 +
    2.18 +You should have received a copy of the GNU General Public License
    2.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2.20 +*/
    2.21  #ifndef CURVE_H_
    2.22  #define CURVE_H_
    2.23  
     3.1 --- a/src/image.cc	Wed Dec 31 07:53:53 2014 +0200
     3.2 +++ b/src/image.cc	Wed Dec 31 07:57:04 2014 +0200
     3.3 @@ -1,3 +1,20 @@
     3.4 +/*
     3.5 +glviewvol is an OpenGL 3D volume data viewer
     3.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     3.7 +
     3.8 +This program is free software: you can redistribute it and/or modify
     3.9 +it under the terms of the GNU General Public License as published by
    3.10 +the Free Software Foundation, either version 3 of the License, or
    3.11 +(at your option) any later version.
    3.12 +
    3.13 +This program is distributed in the hope that it will be useful,
    3.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.16 +GNU General Public License for more details.
    3.17 +
    3.18 +You should have received a copy of the GNU General Public License
    3.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    3.20 +*/
    3.21  #include <string.h>
    3.22  #include <imago2.h>
    3.23  #include "image.h"
     4.1 --- a/src/image.h	Wed Dec 31 07:53:53 2014 +0200
     4.2 +++ b/src/image.h	Wed Dec 31 07:57:04 2014 +0200
     4.3 @@ -1,3 +1,20 @@
     4.4 +/*
     4.5 +glviewvol is an OpenGL 3D volume data viewer
     4.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     4.7 +
     4.8 +This program is free software: you can redistribute it and/or modify
     4.9 +it under the terms of the GNU General Public License as published by
    4.10 +the Free Software Foundation, either version 3 of the License, or
    4.11 +(at your option) any later version.
    4.12 +
    4.13 +This program is distributed in the hope that it will be useful,
    4.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.16 +GNU General Public License for more details.
    4.17 +
    4.18 +You should have received a copy of the GNU General Public License
    4.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    4.20 +*/
    4.21  #ifndef IMAGE_H_
    4.22  #define IMAGE_H_
    4.23  
     5.1 --- a/src/main.cc	Wed Dec 31 07:53:53 2014 +0200
     5.2 +++ b/src/main.cc	Wed Dec 31 07:57:04 2014 +0200
     5.3 @@ -1,3 +1,20 @@
     5.4 +/*
     5.5 +glviewvol is an OpenGL 3D volume data viewer
     5.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     5.7 +
     5.8 +This program is free software: you can redistribute it and/or modify
     5.9 +it under the terms of the GNU General Public License as published by
    5.10 +the Free Software Foundation, either version 3 of the License, or
    5.11 +(at your option) any later version.
    5.12 +
    5.13 +This program is distributed in the hope that it will be useful,
    5.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.16 +GNU General Public License for more details.
    5.17 +
    5.18 +You should have received a copy of the GNU General Public License
    5.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    5.20 +*/
    5.21  // GLUT frontend
    5.22  #ifdef USE_GLUT
    5.23  
     6.1 --- a/src/opengl.h	Wed Dec 31 07:53:53 2014 +0200
     6.2 +++ b/src/opengl.h	Wed Dec 31 07:57:04 2014 +0200
     6.3 @@ -1,3 +1,20 @@
     6.4 +/*
     6.5 +glviewvol is an OpenGL 3D volume data viewer
     6.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     6.7 +
     6.8 +This program is free software: you can redistribute it and/or modify
     6.9 +it under the terms of the GNU General Public License as published by
    6.10 +the Free Software Foundation, either version 3 of the License, or
    6.11 +(at your option) any later version.
    6.12 +
    6.13 +This program is distributed in the hope that it will be useful,
    6.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    6.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    6.16 +GNU General Public License for more details.
    6.17 +
    6.18 +You should have received a copy of the GNU General Public License
    6.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    6.20 +*/
    6.21  #ifndef OPENGL_H_
    6.22  #define OPENGL_H_
    6.23  
     7.1 --- a/src/opt.cc	Wed Dec 31 07:53:53 2014 +0200
     7.2 +++ b/src/opt.cc	Wed Dec 31 07:57:04 2014 +0200
     7.3 @@ -1,3 +1,20 @@
     7.4 +/*
     7.5 +glviewvol is an OpenGL 3D volume data viewer
     7.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     7.7 +
     7.8 +This program is free software: you can redistribute it and/or modify
     7.9 +it under the terms of the GNU General Public License as published by
    7.10 +the Free Software Foundation, either version 3 of the License, or
    7.11 +(at your option) any later version.
    7.12 +
    7.13 +This program is distributed in the hope that it will be useful,
    7.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    7.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    7.16 +GNU General Public License for more details.
    7.17 +
    7.18 +You should have received a copy of the GNU General Public License
    7.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    7.20 +*/
    7.21  #include <stdio.h>
    7.22  #include <string.h>
    7.23  #include "opt.h"
     8.1 --- a/src/opt.h	Wed Dec 31 07:53:53 2014 +0200
     8.2 +++ b/src/opt.h	Wed Dec 31 07:57:04 2014 +0200
     8.3 @@ -1,3 +1,20 @@
     8.4 +/*
     8.5 +glviewvol is an OpenGL 3D volume data viewer
     8.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     8.7 +
     8.8 +This program is free software: you can redistribute it and/or modify
     8.9 +it under the terms of the GNU General Public License as published by
    8.10 +the Free Software Foundation, either version 3 of the License, or
    8.11 +(at your option) any later version.
    8.12 +
    8.13 +This program is distributed in the hope that it will be useful,
    8.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    8.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    8.16 +GNU General Public License for more details.
    8.17 +
    8.18 +You should have received a copy of the GNU General Public License
    8.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    8.20 +*/
    8.21  #ifndef OPT_H_
    8.22  #define OPT_H_
    8.23  
     9.1 --- a/src/rend_fast.cc	Wed Dec 31 07:53:53 2014 +0200
     9.2 +++ b/src/rend_fast.cc	Wed Dec 31 07:57:04 2014 +0200
     9.3 @@ -1,3 +1,20 @@
     9.4 +/*
     9.5 +glviewvol is an OpenGL 3D volume data viewer
     9.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
     9.7 +
     9.8 +This program is free software: you can redistribute it and/or modify
     9.9 +it under the terms of the GNU General Public License as published by
    9.10 +the Free Software Foundation, either version 3 of the License, or
    9.11 +(at your option) any later version.
    9.12 +
    9.13 +This program is distributed in the hope that it will be useful,
    9.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    9.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    9.16 +GNU General Public License for more details.
    9.17 +
    9.18 +You should have received a copy of the GNU General Public License
    9.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    9.20 +*/
    9.21  #include <stdio.h>
    9.22  #include "opengl.h"
    9.23  #include "rend_fast.h"
    10.1 --- a/src/rend_fast.h	Wed Dec 31 07:53:53 2014 +0200
    10.2 +++ b/src/rend_fast.h	Wed Dec 31 07:57:04 2014 +0200
    10.3 @@ -1,3 +1,20 @@
    10.4 +/*
    10.5 +glviewvol is an OpenGL 3D volume data viewer
    10.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    10.7 +
    10.8 +This program is free software: you can redistribute it and/or modify
    10.9 +it under the terms of the GNU General Public License as published by
   10.10 +the Free Software Foundation, either version 3 of the License, or
   10.11 +(at your option) any later version.
   10.12 +
   10.13 +This program is distributed in the hope that it will be useful,
   10.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   10.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   10.16 +GNU General Public License for more details.
   10.17 +
   10.18 +You should have received a copy of the GNU General Public License
   10.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   10.20 +*/
   10.21  #ifndef REND_FAST_H_
   10.22  #define REND_FAST_H_
   10.23  
    11.1 --- a/src/renderer.cc	Wed Dec 31 07:53:53 2014 +0200
    11.2 +++ b/src/renderer.cc	Wed Dec 31 07:57:04 2014 +0200
    11.3 @@ -1,3 +1,20 @@
    11.4 +/*
    11.5 +glviewvol is an OpenGL 3D volume data viewer
    11.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    11.7 +
    11.8 +This program is free software: you can redistribute it and/or modify
    11.9 +it under the terms of the GNU General Public License as published by
   11.10 +the Free Software Foundation, either version 3 of the License, or
   11.11 +(at your option) any later version.
   11.12 +
   11.13 +This program is distributed in the hope that it will be useful,
   11.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   11.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   11.16 +GNU General Public License for more details.
   11.17 +
   11.18 +You should have received a copy of the GNU General Public License
   11.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   11.20 +*/
   11.21  #include <math.h>
   11.22  #include "renderer.h"
   11.23  
    12.1 --- a/src/renderer.h	Wed Dec 31 07:53:53 2014 +0200
    12.2 +++ b/src/renderer.h	Wed Dec 31 07:57:04 2014 +0200
    12.3 @@ -1,3 +1,20 @@
    12.4 +/*
    12.5 +glviewvol is an OpenGL 3D volume data viewer
    12.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    12.7 +
    12.8 +This program is free software: you can redistribute it and/or modify
    12.9 +it under the terms of the GNU General Public License as published by
   12.10 +the Free Software Foundation, either version 3 of the License, or
   12.11 +(at your option) any later version.
   12.12 +
   12.13 +This program is distributed in the hope that it will be useful,
   12.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   12.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   12.16 +GNU General Public License for more details.
   12.17 +
   12.18 +You should have received a copy of the GNU General Public License
   12.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   12.20 +*/
   12.21  #ifndef RENDERER_H_
   12.22  #define RENDERER_H_
   12.23  
    13.1 --- a/src/sdr.c	Wed Dec 31 07:53:53 2014 +0200
    13.2 +++ b/src/sdr.c	Wed Dec 31 07:57:04 2014 +0200
    13.3 @@ -1,3 +1,20 @@
    13.4 +/*
    13.5 +glviewvol is an OpenGL 3D volume data viewer
    13.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    13.7 +
    13.8 +This program is free software: you can redistribute it and/or modify
    13.9 +it under the terms of the GNU General Public License as published by
   13.10 +the Free Software Foundation, either version 3 of the License, or
   13.11 +(at your option) any later version.
   13.12 +
   13.13 +This program is distributed in the hope that it will be useful,
   13.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   13.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13.16 +GNU General Public License for more details.
   13.17 +
   13.18 +You should have received a copy of the GNU General Public License
   13.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   13.20 +*/
   13.21  #include <stdio.h>
   13.22  #include <stdlib.h>
   13.23  #include <string.h>
    14.1 --- a/src/sdr.h	Wed Dec 31 07:53:53 2014 +0200
    14.2 +++ b/src/sdr.h	Wed Dec 31 07:57:04 2014 +0200
    14.3 @@ -1,3 +1,20 @@
    14.4 +/*
    14.5 +glviewvol is an OpenGL 3D volume data viewer
    14.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    14.7 +
    14.8 +This program is free software: you can redistribute it and/or modify
    14.9 +it under the terms of the GNU General Public License as published by
   14.10 +the Free Software Foundation, either version 3 of the License, or
   14.11 +(at your option) any later version.
   14.12 +
   14.13 +This program is distributed in the hope that it will be useful,
   14.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   14.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   14.16 +GNU General Public License for more details.
   14.17 +
   14.18 +You should have received a copy of the GNU General Public License
   14.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   14.20 +*/
   14.21  #ifndef SDR_H_
   14.22  #define SDR_H_
   14.23  
    15.1 --- a/src/viewer.cc	Wed Dec 31 07:53:53 2014 +0200
    15.2 +++ b/src/viewer.cc	Wed Dec 31 07:57:04 2014 +0200
    15.3 @@ -1,3 +1,20 @@
    15.4 +/*
    15.5 +glviewvol is an OpenGL 3D volume data viewer
    15.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    15.7 +
    15.8 +This program is free software: you can redistribute it and/or modify
    15.9 +it under the terms of the GNU General Public License as published by
   15.10 +the Free Software Foundation, either version 3 of the License, or
   15.11 +(at your option) any later version.
   15.12 +
   15.13 +This program is distributed in the hope that it will be useful,
   15.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   15.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15.16 +GNU General Public License for more details.
   15.17 +
   15.18 +You should have received a copy of the GNU General Public License
   15.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   15.20 +*/
   15.21  #include <stdio.h>
   15.22  #include <stdlib.h>
   15.23  #include "opengl.h"
    16.1 --- a/src/viewer.h	Wed Dec 31 07:53:53 2014 +0200
    16.2 +++ b/src/viewer.h	Wed Dec 31 07:57:04 2014 +0200
    16.3 @@ -1,3 +1,20 @@
    16.4 +/*
    16.5 +glviewvol is an OpenGL 3D volume data viewer
    16.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    16.7 +
    16.8 +This program is free software: you can redistribute it and/or modify
    16.9 +it under the terms of the GNU General Public License as published by
   16.10 +the Free Software Foundation, either version 3 of the License, or
   16.11 +(at your option) any later version.
   16.12 +
   16.13 +This program is distributed in the hope that it will be useful,
   16.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   16.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   16.16 +GNU General Public License for more details.
   16.17 +
   16.18 +You should have received a copy of the GNU General Public License
   16.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   16.20 +*/
   16.21  #ifndef VIEWER_H_
   16.22  #define VIEWER_H_
   16.23  
    17.1 --- a/src/volume.cc	Wed Dec 31 07:53:53 2014 +0200
    17.2 +++ b/src/volume.cc	Wed Dec 31 07:57:04 2014 +0200
    17.3 @@ -1,3 +1,20 @@
    17.4 +/*
    17.5 +glviewvol is an OpenGL 3D volume data viewer
    17.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    17.7 +
    17.8 +This program is free software: you can redistribute it and/or modify
    17.9 +it under the terms of the GNU General Public License as published by
   17.10 +the Free Software Foundation, either version 3 of the License, or
   17.11 +(at your option) any later version.
   17.12 +
   17.13 +This program is distributed in the hope that it will be useful,
   17.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   17.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   17.16 +GNU General Public License for more details.
   17.17 +
   17.18 +You should have received a copy of the GNU General Public License
   17.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   17.20 +*/
   17.21  #include <stdio.h>
   17.22  #include <string.h>
   17.23  #include <ctype.h>
    18.1 --- a/src/volume.h	Wed Dec 31 07:53:53 2014 +0200
    18.2 +++ b/src/volume.h	Wed Dec 31 07:57:04 2014 +0200
    18.3 @@ -1,3 +1,20 @@
    18.4 +/*
    18.5 +glviewvol is an OpenGL 3D volume data viewer
    18.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    18.7 +
    18.8 +This program is free software: you can redistribute it and/or modify
    18.9 +it under the terms of the GNU General Public License as published by
   18.10 +the Free Software Foundation, either version 3 of the License, or
   18.11 +(at your option) any later version.
   18.12 +
   18.13 +This program is distributed in the hope that it will be useful,
   18.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   18.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18.16 +GNU General Public License for more details.
   18.17 +
   18.18 +You should have received a copy of the GNU General Public License
   18.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   18.20 +*/
   18.21  #ifndef VOLUME_H_
   18.22  #define VOLUME_H_
   18.23  
    19.1 --- a/src/xfer_view.cc	Wed Dec 31 07:53:53 2014 +0200
    19.2 +++ b/src/xfer_view.cc	Wed Dec 31 07:57:04 2014 +0200
    19.3 @@ -1,3 +1,20 @@
    19.4 +/*
    19.5 +glviewvol is an OpenGL 3D volume data viewer
    19.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    19.7 +
    19.8 +This program is free software: you can redistribute it and/or modify
    19.9 +it under the terms of the GNU General Public License as published by
   19.10 +the Free Software Foundation, either version 3 of the License, or
   19.11 +(at your option) any later version.
   19.12 +
   19.13 +This program is distributed in the hope that it will be useful,
   19.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   19.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19.16 +GNU General Public License for more details.
   19.17 +
   19.18 +You should have received a copy of the GNU General Public License
   19.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   19.20 +*/
   19.21  #include <stdio.h>
   19.22  #include <math.h>
   19.23  #include "opengl.h"
    20.1 --- a/src/xfer_view.h	Wed Dec 31 07:53:53 2014 +0200
    20.2 +++ b/src/xfer_view.h	Wed Dec 31 07:57:04 2014 +0200
    20.3 @@ -1,3 +1,20 @@
    20.4 +/*
    20.5 +glviewvol is an OpenGL 3D volume data viewer
    20.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    20.7 +
    20.8 +This program is free software: you can redistribute it and/or modify
    20.9 +it under the terms of the GNU General Public License as published by
   20.10 +the Free Software Foundation, either version 3 of the License, or
   20.11 +(at your option) any later version.
   20.12 +
   20.13 +This program is distributed in the hope that it will be useful,
   20.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   20.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   20.16 +GNU General Public License for more details.
   20.17 +
   20.18 +You should have received a copy of the GNU General Public License
   20.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   20.20 +*/
   20.21  #ifndef XFER_VIEW_H_
   20.22  #define XFER_VIEW_H_
   20.23  
    21.1 --- a/src/xfermap.cc	Wed Dec 31 07:53:53 2014 +0200
    21.2 +++ b/src/xfermap.cc	Wed Dec 31 07:57:04 2014 +0200
    21.3 @@ -1,3 +1,20 @@
    21.4 +/*
    21.5 +glviewvol is an OpenGL 3D volume data viewer
    21.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    21.7 +
    21.8 +This program is free software: you can redistribute it and/or modify
    21.9 +it under the terms of the GNU General Public License as published by
   21.10 +the Free Software Foundation, either version 3 of the License, or
   21.11 +(at your option) any later version.
   21.12 +
   21.13 +This program is distributed in the hope that it will be useful,
   21.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   21.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   21.16 +GNU General Public License for more details.
   21.17 +
   21.18 +You should have received a copy of the GNU General Public License
   21.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   21.20 +*/
   21.21  #include <math.h>
   21.22  #include <algorithm>
   21.23  #include "xfermap.h"
    22.1 --- a/src/xfermap.h	Wed Dec 31 07:53:53 2014 +0200
    22.2 +++ b/src/xfermap.h	Wed Dec 31 07:57:04 2014 +0200
    22.3 @@ -1,3 +1,20 @@
    22.4 +/*
    22.5 +glviewvol is an OpenGL 3D volume data viewer
    22.6 +Copyright (C) 2014  John Tsiombikas <nuclear@member.fsf.org>
    22.7 +
    22.8 +This program is free software: you can redistribute it and/or modify
    22.9 +it under the terms of the GNU General Public License as published by
   22.10 +the Free Software Foundation, either version 3 of the License, or
   22.11 +(at your option) any later version.
   22.12 +
   22.13 +This program is distributed in the hope that it will be useful,
   22.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
   22.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   22.16 +GNU General Public License for more details.
   22.17 +
   22.18 +You should have received a copy of the GNU General Public License
   22.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
   22.20 +*/
   22.21  #ifndef XFERMAP_H_
   22.22  #define XFERMAP_H_
   22.23