[An...] Posted yesterday at 08:41 AM Share Posted yesterday at 08:41 AM (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 yesterday at 09:04 AM Link to comment Share on other sites More sharing options...
[An...] Posted yesterday at 09:07 AM Author Share Posted yesterday at 09:07 AM 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 yesterday at 09:32 AM Share Posted yesterday at 09:32 AM 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 20 hours ago Share Posted 20 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...
[Ma...] Posted 4 hours ago Share Posted 4 hours ago Hi, I got this answer: part = gom.app.project.parts['Part'] is_preliminary = part.part_contains_preliminary_data And for project-wide information: is_preliminary = gom.app.project.project_contains_preliminary_data Link to comment Share on other sites More sharing options...
[Ma...] Posted 4 hours ago Share Posted 4 hours ago Please sign in to view this quote. Thanks - saviour - that works 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