Computer Science, asked by CrispyTekker3080, 1 year ago

Write a program to display the visible surface of a convex polyhedron using the bsp tree method.

Answers

Answered by Anonymous
1
bsp_tree(poly* current_poly)



{



while(still_polygons)



{



partition_polygons(current_poly);



}



bsp_tree(current_poly->left);



bsp_tree(current_poly->right);



}
Similar questions