Disabling Mesh Features
To disable a feature, enter
model.component(
<ctag>
).mesh(
<tag>
).feature(
<ftag>
).active(false);
To enable a disabled feature, enter
model.component(
<ctag>
).mesh(
<tag>
).feature(
<ftag>
).active(true);
You can get the enabled/disabled status of a feature by entering
boolean isEnabled = model.component(
<ctag>
).mesh(
<tag>
).feature(
<ftag>
).active();