Mesh Status
You can check if the entire selected geometry has a mesh by calling the
isComplete
method.
boolean model.
component(
<ctag>
).
mesh(
<tag>
).stat().isComplete();
To check if the entire geometry is meshed, use
boolean model.
component(
<ctag>
).
mesh(
<tag>
).isComplete();
You can also check if the selected geometry has an empty mesh by calling the
isEmpty
method.
boolean model.component(
<ctag>
).mesh(
<tag>
).stat().isEmpty();
To check if the entire geometry has an empty mesh, use
boolean model.component(
<ctag>
).mesh(
<tag>
).isEmpty();