ok .. how about this question:
what is the difference between
render() sphere();
there is no change to the sphere’s mesh
and
render() { t() sphere(); sphere(); t() sphere() }
where t() is translate to move the spheres out of the way of each other
but all three of the spheres are completely converted from quads to triangles
folks have said that there is a sort of implicit union done between all the shapes included in the scope of the render render() and that a single (?) mesh is made of all of them
is there a threshold .. how many quads does have the union have to have before they have to be split?

i have been playing with this script ..
applying render to one object does not change it,
but for two or more, whether they are intersecting or not .. then they get converted to triangles
i changed the shapes to cubes .. if just one follows the render it is not divided, but two or more, even when not intersecting (i removed the yellow stretched out cube so only the 3 colored ones were left) their sides don’t get turned into triangles
so is it just the number of shapes in the “union” ? is the rule - only one shape in the “union” do nothing ? two or more start making triangles?
ok .. how about this question:
what is the difference between
`render() sphere();`
there is no change to the sphere’s mesh
and
`render() { t() sphere(); sphere(); t() sphere() }`
where t() is translate to move the spheres out of the way of each other
but all three of the spheres are completely converted from quads to triangles
folks have said that there is a sort of implicit union done between all the shapes included in the scope of the render render() and that a single (?) mesh is made of all of them
is there a threshold .. how many quads does have the union have to have before they have to be split?

i have been playing with this script ..
applying render to one object does not change it,
but for two or more, whether they are intersecting or not .. then they get converted to triangles
i changed the shapes to cubes .. if just one follows the render it is not divided, but two or more, even when not intersecting (i removed the yellow stretched out cube so only the 3 colored ones were left) their sides don’t get turned into triangles
so is it just the number of shapes in the “union” ? is the rule - only one shape in the “union” do nothing ? two or more start making triangles?