Version 1.9

This commit is contained in:
Chlumsky 2021-05-28 19:50:40 +02:00
parent acb01df098
commit 0f9c93e686
7 changed files with 15 additions and 7 deletions

1
.gitignore vendored
View File

@ -18,6 +18,7 @@
*.VC.opendb
*.VC.db
/bin/*.lib
/bin/msdfgen
output.png
render.png
out/

View File

@ -1,4 +1,11 @@
## Version 1.9 (2021-05-28)
- Error correction of multi-channel distance fields has been completely reworked
- Added new edge coloring strategy that optimizes colors based on distances between edges
- Added some minor functions for the library API
- Minor code refactor and optimizations
## Version 1.8 (2020-10-17)
- Integrated the Skia library into the project, which is used to preprocess the shape geometry and eliminate any self-intersections and other irregularities previously unsupported by the software

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +1,8 @@
/*
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - standalone console program
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - standalone console program
* --------------------------------------------------------------------------------------------
* A utility by Viktor Chlumsky, (c) 2014 - 2020
* A utility by Viktor Chlumsky, (c) 2014 - 2021
*
*/

View File

@ -2,9 +2,9 @@
#pragma once
/*
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - extensions
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - extensions
* ----------------------------------------------------------------------------
* A utility by Viktor Chlumsky, (c) 2014 - 2020
* A utility by Viktor Chlumsky, (c) 2014 - 2021
*
* The extension module provides ways to easily load input and save output using popular formats.
*

View File

@ -2,9 +2,9 @@
#pragma once
/*
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17)
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28)
* ---------------------------------------------------------------
* A utility by Viktor Chlumsky, (c) 2014 - 2020
* A utility by Viktor Chlumsky, (c) 2014 - 2021
*
* The technique used to generate multi-channel distance fields in this code
* has been developed by Viktor Chlumsky in 2014 for his master's thesis,
@ -34,7 +34,7 @@
#include "core/save-tiff.h"
#include "core/shape-description.h"
#define MSDFGEN_VERSION "1.8"
#define MSDFGEN_VERSION "1.9"
namespace msdfgen {