Adds the full Cincinnati material/etch library list as the committed default config (seeded into Posts/ on build only when no runtime config exists), plus a Selected Library override in the PropertyGrid backed by a TypeConverter that populates from MaterialLibraries. MainForm calls the new IPostProcessorNestAware hook before showing the config so the dropdown opens preselected to the best match by nest material and nearest thickness. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
120 B
C#
8 lines
120 B
C#
namespace OpenNest
|
|
{
|
|
public interface IPostProcessorNestAware
|
|
{
|
|
void PrepareForNest(Nest nest);
|
|
}
|
|
}
|