Fixed support from bed
issue: MatterHackers/MCCentral#4977 Cannot generate support from bed for this model
This commit is contained in:
parent
d0f2df0e8b
commit
3923b0212c
1 changed files with 2 additions and 1 deletions
|
|
@ -308,7 +308,8 @@ namespace MatterHackers.MatterControl.DesignTools
|
|||
if (fromBed)
|
||||
{
|
||||
i = GetNextBottom(i, kvp.Value);
|
||||
if (kvp.Value[i].bottom)
|
||||
if (i < kvp.Value.Count
|
||||
&& kvp.Value[i].bottom)
|
||||
{
|
||||
AddSupportColumn(supportColumnsToAdd, xPos, yPos, 0, kvp.Value[i].z + .01);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue