begin 3.2 dev cycle
This commit is contained in:
parent
c25c470e21
commit
faf891d353
5 changed files with 4 additions and 10 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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') {
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ button {
|
|||
}
|
||||
|
||||
button:hover {
|
||||
background-color: rgba(200,200,200,1);
|
||||
background-color: rgba(210,210,210,1);
|
||||
}
|
||||
|
||||
/** misc ui **/
|
||||
|
|
|
|||
Loading…
Reference in a new issue