depreciate filled
This commit is contained in:
parent
32c436f40a
commit
6225a1af13
@ -25,7 +25,7 @@ import { Region, Kernel } from "./region.js";
|
||||
let r = Region.Create();
|
||||
let filler = (x, y, z)=>
|
||||
{
|
||||
r.filled.push(Region.I(x, y, z));
|
||||
r.voxels[Region.I(x, y, z)] = true;
|
||||
};
|
||||
filler(1, 1, 1);
|
||||
Kernel.Loop(Kernel.Corners, [1, 1, 1], filler);
|
||||
|
17
region.js
17
region.js
@ -36,7 +36,7 @@ export const Region =
|
||||
{
|
||||
Create()
|
||||
{
|
||||
return {filled:[]};
|
||||
return {voxels:[]};
|
||||
},
|
||||
I(inX, inY, inZ)
|
||||
{
|
||||
@ -53,23 +53,22 @@ export const Region =
|
||||
Surface(inRegion)
|
||||
{
|
||||
let surface = [];
|
||||
inRegion.filled.forEach(inIndex =>
|
||||
inRegion.voxels.forEach((inValue, inIndex) =>
|
||||
{
|
||||
if(inValue)
|
||||
{
|
||||
let coords = Region.XYZ(inIndex);
|
||||
Kernel.Loop(Kernel.Corners, coords, (inX, inY, inZ)=>
|
||||
{
|
||||
let index = Region.I(inX, inY, inZ);
|
||||
if(inRegion.filled[index] === undefined)
|
||||
let kernel = Region.I(inX, inY, inZ);
|
||||
if(!inRegion.voxels[kernel])
|
||||
{
|
||||
console.log(inX, inY, inZ, "surface");
|
||||
console.log(coords, "surface");
|
||||
surface.push(inIndex);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
console.log(inX, inY, inZ, "filled");
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
return surface;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user