[An...] Posted 8 hours ago Share Posted 8 hours ago (edited) Is there a function or a variable in the scripting that can be used to determine whether the currently open project contains a so-called preliminary actual mesh? Thank you in advance for any help! Edited 8 hours ago Link to comment Share on other sites More sharing options...
[An...] Posted 8 hours ago Author Share Posted 8 hours ago Addendum: Is there a way to query the post-processing of an actual mesh with which its polygonization has been carried out? So adaptive, low resolution, less detail, standard, more detail, none? Link to comment Share on other sites More sharing options...
[Ma...] Posted 7 hours ago Share Posted 7 hours ago I am looking for that too. I saw some info inside mesh, but it's enviroment dependant - in other words it's translated. There was info about used memory and stuff 1 Link to comment Share on other sites More sharing options...
[TI...] Posted 2 hours ago Share Posted 2 hours ago You can try to compute if there is a mesh in the program: import gom mesh_in_program = False try: print(gom.app.project.parts['Part'].actual.computation_status) mesh_in_program = True mesh_points = gom.app.project.parts['Part'].actual.num_points print(f'Mesh found in program: {mesh_points} points') except: print('No mesh in program') To get the details of the polygonization quality, you would need to record that to a json file or txt file for use later. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in