diff options
author | jvech <jmvalenciae@unal.edu.co> | 2022-10-31 09:06:44 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2022-10-31 09:06:44 -0500 |
commit | 947ecc07b307b649f3380898923a21a303aa0b6a (patch) | |
tree | 9038e4103127ea6810266c57aa4b1ea1cddcc4bb | |
parent | 30f2fb748307ea32000089cecaff4d0c4e3d5d73 (diff) |
add: LICENSE notice added to all files
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/linear.c | 18 | ||||
-rw-r--r-- | src/linear.h | 18 | ||||
-rw-r--r-- | src/main.c | 18 | ||||
-rw-r--r-- | src/obj.c | 18 | ||||
-rw-r--r-- | src/obj.h | 18 | ||||
-rw-r--r-- | src/shader.c | 18 | ||||
-rw-r--r-- | src/shader.h | 18 |
8 files changed, 127 insertions, 1 deletions
@@ -5,7 +5,7 @@ making a convincing world with mountains and lands, this will take a while 🥲. # Installation -```shell +``` $ cd mverse $ make ``` diff --git a/src/linear.c b/src/linear.c index 062c103..0ceef15 100644 --- a/src/linear.c +++ b/src/linear.c @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #include "linear.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/linear.h b/src/linear.h index bd373f8..deec495 100644 --- a/src/linear.h +++ b/src/linear.h @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #ifndef __LINEAR__ #define __LINEAR__ @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #include <stdio.h> #include <stdlib.h> #include <errno.h> @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + # ifndef __OBJ__ #define __OBJ__ diff --git a/src/shader.c b/src/shader.c index 2156490..e36a8d8 100644 --- a/src/shader.c +++ b/src/shader.c @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> diff --git a/src/shader.h b/src/shader.h index f322332..3fa1333 100644 --- a/src/shader.h +++ b/src/shader.h @@ -1,3 +1,21 @@ +/* + * This file is part of mverse + * Copyright (C) 2022 juanvalencia.xyz + + * mverse 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 <https://www.gnu.org/licenses/>. + */ + #ifndef __SHADER__ #define __SHADER__ |