-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
28 lines (17 loc) · 820 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# INCG v0.1
INCG v0.1
A library of essential tools for computational geometry
Copyright 2017-2022 Ioannis Nompelis
This is the growing collection of my tools for performing calculations that
involve geometry in multiple dimensions. It is meant to be a very lean, fast
and portable library with a very simple API in C/C++ and Fortran.
The library will be receiving updates as I keep revisiting my tools and as I
build new ones in the order that I need them in my work.
Documentation with Doxygen will be included in future updates.
IN 2017/03/28
Added support for a "mesh" object that is made of triangles. Presently, only
a uniform mesh refinement method is included, and other methods of refinement
will be added.
IN 2021/08/29
Added a function to generate a random point inside a triangle.
IN 2022/07/05