Jump to content
Mr. Humberto Nakanishi

Export Panel Mesh with more decimal cases

Recommended Posts

Hi Humberto,

 

You can write a feature that does the export for you. That way you have full control over the number decimals that are written to the file. Both, the FDouble.toString() command and the global asString() commands, take the precision as an argument:

|> (8.123456791234).toString("g", 14)
"8.1234567891234"

|> asString(8.123456791234, 0, 14)
"8.1234567891234"

For an example of how to write an export feature, see the following post that includes a project where panel meshes are exported: http://www.friendship-systems.com/forum/index.php?/topic/159-exporting-custom-file-formats-using-features/

 

Hope this helps.

 

Arne

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...