star-vx

Structuring voxels for ray-tracing
git clone git://git.meso-star.fr/star-vx.git
Log | Files | Refs | README | LICENSE

commit d834ce9021a8fe6132e226a9936be58f30e4e057
parent 6e2ee80f56979da66408c133c0fe80b40bea1678
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 19 Feb 2020 15:00:12 +0100

Update the copyright notice

Diffstat:
MREADME.md | 13+++++++------
Mcmake/CMakeLists.txt | 3++-
Msrc/svx.h | 3++-
Msrc/svx_bintree.c | 3++-
Msrc/svx_bintree_trace_ray.c | 3++-
Msrc/svx_buffer.c | 3++-
Msrc/svx_buffer.h | 3++-
Msrc/svx_c.h | 3++-
Msrc/svx_device.c | 3++-
Msrc/svx_device.h | 3++-
Msrc/svx_octree.c | 3++-
Msrc/svx_octree_trace_ray.c | 3++-
Msrc/svx_tree.c | 3++-
Msrc/svx_tree.h | 3++-
Msrc/svx_tree_builder.h | 3++-
Msrc/svx_tree_generic_func.h | 3++-
Msrc/test_svx_bintree.c | 3++-
Msrc/test_svx_bintree_trace_ray.c | 3++-
Msrc/test_svx_device.c | 3++-
Msrc/test_svx_octree.c | 3++-
Msrc/test_svx_octree_trace_ray.c | 3++-
Msrc/test_svx_utils.h | 3++-
22 files changed, 49 insertions(+), 27 deletions(-)

diff --git a/README.md b/README.md @@ -38,10 +38,11 @@ resulting project can be edited, built, tested and installed as any CMake project. Refer to the [CMake](https://cmake.org/documentation) for further informations on CMake. -## Licenses +## License -Star-VX is free software copyright (C) 2018 Université Paul Sabatier -(<contact-edstar@laplace.univ-tlse.fr>), |Meso|Star> (<contact@meso-star.com>). -It is released under the GPL v3+ license: GNU GPL version 3 or later. You are -welcome to redistribute it under certain conditions; refer to the COPYING file -for details. +Copyright (C) 2018 Université Paul Sabatier +(<contact-edstar@laplace.univ-tlse.fr>). Copyright (C) 2018, 2020 +[|Meso|Star>](https://www.meso-star.com) (<contact@meso-star.com>). Star-VoXel +is free software released under the GPL v3+ license: GNU GPL version 3 or +later. You are welcome to redistribute it under certain conditions; refer to +the COPYING file for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,5 @@ -# Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +# Copyright (C) 2018 Université Paul Sabatier +# Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) # # 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 diff --git a/src/svx.h b/src/svx.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_bintree.c b/src/svx_bintree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_bintree_trace_ray.c b/src/svx_bintree_trace_ray.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_buffer.c b/src/svx_buffer.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_buffer.h b/src/svx_buffer.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_c.h b/src/svx_c.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_device.c b/src/svx_device.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_device.h b/src/svx_device.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_octree.c b/src/svx_octree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_octree_trace_ray.c b/src/svx_octree_trace_ray.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_tree.c b/src/svx_tree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_tree.h b/src/svx_tree.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_tree_builder.h b/src/svx_tree_builder.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/svx_tree_generic_func.h b/src/svx_tree_generic_func.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_bintree.c b/src/test_svx_bintree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_bintree_trace_ray.c b/src/test_svx_bintree_trace_ray.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_device.c b/src/test_svx_device.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_octree.c b/src/test_svx_octree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_octree_trace_ray.c b/src/test_svx_octree_trace_ray.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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 diff --git a/src/test_svx_utils.h b/src/test_svx_utils.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2018 |Meso|Star>, Université Paul Sabatier +/* Copyright (C) 2018 Université Paul Sabatier + * Copyright (C) 2018, 2020 |Meso|Star> (contact@meso-star.com) * * 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