Closed retromore closed 10 months ago
@khiner Any idea how to fix ?
It looks like I must have missed updating the main.cpp
after pulling the material props out of the common arguments. I haven't tested this yet, but just looking at the code, I hope that this change would fix:
Change this:
string dsp = m2f::mesh2faust(
objectFileName,
{
modelName,
materialProperties,
freqControl,
modesMinFreq,
modesMaxFreq,
targetNModes,
femNModes,
exPos,
nExPos,
showFreqs,
debugMode
}
);
to this:
string dsp = m2f::mesh2faust(
objectFileName,
materialProperties,
{
modelName,
freqControl,
modesMinFreq,
modesMaxFreq,
targetNModes,
femNModes,
exPos,
nExPos,
showFreqs,
debugMode
}
);
I'll test this soon, apologies for the oversight!
I confirmed this fixes. I'll submit a PR soon.
I confirmed this fixes. I'll submit a PR soon.
Yes! That fixed it, thanks a lot and happy new year!
Glad to hear it - happy new year!
Trying to compile mesh2faust on Ubuntu 22.04 (Win 11 WSL); After fixing all dependencies the compiler gets to 97% and then throws the following error:
Any suggestions on how to fix this?