flatten text more aggressively

This commit is contained in:
David Rose 2005-04-22 22:09:37 +00:00
parent 71cb47f94c
commit 04e4ed5700

View File

@ -319,7 +319,9 @@ generate() {
if (text_flatten) { if (text_flatten) {
SceneGraphReducer gr; SceneGraphReducer gr;
gr.apply_attribs(root); gr.apply_attribs(root);
gr.flatten(root, ~0); gr.flatten(root, ~SceneGraphReducer::CS_within_radius);
gr.collect_vertex_data(root);
gr.unify(root);
} }
return root; return root;