# GeoMod
## Overview
GEOmetric MODular Kernel
GeoMod is a self-contained, fully cross-platform modular kernel
for use in any environment that handles 3D and 2D graphics.
It is designed around a modular architecture that results
in a highly flexible, configurable and powerful system.
This repository contains the source code for the GeoMod core kernel,
which is intended as the base for custom implementations of model
generators, physics systems and rendering systems etc. There are,
however, some simple example modules implemented for the purpose
of demonstration and learning.
## License
The GeoMod kernel (found in this repository) is provided under the
MIT license. In practice, this means that you are free to use
GeoMod for any purpose, non-commercial and commercial, provided you
include the license and copyright of GeoMod in your product
(such as in the About section of a compiled program).
GeoMod currently includes a source copy of [Dear ImGui](https://github.com/ocornut/imgui) (MIT license) and a compiled copy of [GLEW](https://github.com/nigels-com/glew). Please see the GLEW repository for license details.
***
The GeoMod license is as follows:
MIT License
Copyright (c) 2023 Sebastian Hall
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.