Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-11-08 03:45:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-08 03:45:39 +0300
commit8d8c4562cc3bd3508970323b507f1a18476fc176 (patch)
tree01203bb72b8ba235faa7fd2b3a365184b6a20bdb /source/blender/blenlib
parent5b936f03f5510774cc407c4f20f22a1a109a000a (diff)
parent5c2670ca394b5270b29a1e3669bb05f410c4e997 (diff)
Merge branch 'blender-v2.81-release'
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/delaunay_2d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/delaunay_2d.c b/source/blender/blenlib/intern/delaunay_2d.c
index f297d8cfeed..9c1e52b53a4 100644
--- a/source/blender/blenlib/intern/delaunay_2d.c
+++ b/source/blender/blenlib/intern/delaunay_2d.c
@@ -910,7 +910,7 @@ static bool delaunay_check(CDTVert *v1, CDTVert *v2, CDTVert *v3, CDTVert *p, co
{
double x1, y1, x2, y2, den, cenx, ceny, rad, pc, a, b, w, z, q, s;
- /* Find center and radius of circumcircle of v1,v2,v3.
+ /* Find center and radius of circum-circle of v1,v2,v3.
* Transform coords so v3 is at origin to help reduce floating point error
* when coordinates are far from (0,0) but close together.
*/