begin 3.2 dev cycle

This commit is contained in:
Stewart Allen 2022-01-21 11:51:38 -05:00
commit faf891d353
5 changed files with 4 additions and 10 deletions

View file

@ -1,6 +1,6 @@
{
"name": "grid-apps",
"version": "3.1.20D",
"version": "3.2.0D",
"description": "grid.space 3d slice & modeling tools",
"author": "Stewart Allen <sa@grid.space>",
"license": "MIT",

View file

@ -6,7 +6,7 @@
if (!self.kiri) {
let kiri = self.kiri = {
beta: 3120,
beta: 3200,
driver: {}, // driver modules
loader: [], // module loading: array of functions
load: (fn) => kiri.loader.push(fn)

View file

@ -403,12 +403,6 @@ mesh.tool = class MeshTool {
// recover and map loops from point arrays
for (let rec of nested) {
rec.loop = polys.filter(loop => loop.points === rec.points)[0];
// keep parent/child winding reversed
// let CCW = rec.depth % 2 === 0;
// if ((CCW && rec.area > 0) || (!CCW && rec.area < 0)) {
// rec.points = rec.loop.points = rec.points.group(3).reverse().flat();
// rec.loop.index = rec.loop.index.reverse();
// }
}
// extract tops which have nesting depth mod 2 === 0

View file

@ -3,7 +3,7 @@
let terms = {
COPYRIGHT: "Copyright (C) Stewart Allen <sa@grid.space> - All Rights Reserved",
LICENSE: "See the license.md file included with the source distribution",
VERSION: "3.1.D20"
VERSION: "3.2.D0"
};
if (typeof(module) === 'object') {

View file

@ -145,7 +145,7 @@ button {
}
button:hover {
background-color: rgba(200,200,200,1);
background-color: rgba(210,210,210,1);
}
/** misc ui **/