A MeshModelPart may only consist of one part. It is still possible to merge two parts into one by e.g. using the meshes of both. In that case it is useful to merge the meta data as well.
Right now there is only MeshModelMetaData::CreateCombined which merges the data but also raises MeshModelMetaData::PartCount. If using it in the constructor of MeshModelPart we get an exception, since a part count > 1 is not allowed in a MeshModelPart.
A
MeshModelPartmay only consist of one part. It is still possible to merge two parts into one by e.g. using the meshes of both. In that case it is useful to merge the meta data as well.Right now there is only
MeshModelMetaData::CreateCombinedwhich merges the data but also raisesMeshModelMetaData::PartCount. If using it in the constructor ofMeshModelPartwe get an exception, since a part count > 1 is not allowed in aMeshModelPart.