If the setting of model color is called, there will be problems such as scaling the model will continuously grow the model, incomplete model display, etc
updateRepProperty(sourceId, fieldName, ...args) {
// console.log('updateRepProperty', sourceId);
const methodName = `set${macro.capitalize(fieldName)}`;
const source = this.$proxyManager.getProxyById(sourceId);
const myRepresentations = this.$proxyManager
.getRepresentations()
.filter((r) => r.getInput() === source);
for (let i = 0; i < myRepresentations.length; i++) {
// console.log(myRepresentations[i]);
if (myRepresentations[i][methodName]) {
myRepresentations[i][methodName](...args);
}
}
this.$proxyManager.renderAllViews();
},



