1

I'm trying to make a program that takes a surface designed by the user, and different 3D geometries from a dataset as inputs and gives a good approximation of the surface using only the objects found in the dataset. This program shouldn't do any warping, and should avoid geometries to collide, even though cutting them could be acceptable, but again with as little loss as possible.

I thought about hardcoding this, but I can't find any good way to optimize the surface coverage without brute-forcing it. I'm wondering what ML techniques would be best for this, and how to find a good balance between precision and speed.

1 Answers1

1

a subset of your problem is pallet-loading (you can find a survey here about it). Yet, there is not any polynomial algorithm for an even simpler case of your problem such as pallet-loading. However, different planners in automated planning contexts can be helpful and give you some heuristics to solve the problem, some planners like Fast Forward.

OmG
  • 1,816
  • 11
  • 19