simple mesh

This commit is contained in:
Lars Brubaker 2019-01-11 16:49:34 -08:00
parent d095171a01
commit e1ce3419f2
55 changed files with 713 additions and 698 deletions

View file

@ -110,14 +110,14 @@ namespace MatterHackers.MatterControl.DesignTools
public override Task Rebuild()
{
return Task.Run(() =>
return Task.Run((System.Action)(() =>
{
this.DebugDepth("Rebuild");
(this).DebugDepth("Rebuild");
using (RebuildLock())
{
var aabb = this.GetAxisAlignedBoundingBox();
var aabb = (this).GetAxisAlignedBoundingBox();
this.Children.Modify((list) =>
this.Children.Modify((List<IObject3D> list) =>
{
list.Clear();
@ -145,10 +145,10 @@ namespace MatterHackers.MatterControl.DesignTools
if (aabb.ZSize > 0)
{
// If the part was already created and at a height, maintain the height.
PlatingHelper.PlaceMeshAtHeight(this, aabb.minXYZ.Z);
PlatingHelper.PlaceMeshAtHeight(this, (double)aabb.MinXYZ.Z);
}
}
});
}));
}
}
}