Skip to main content

Hi,

 

Is there a way to change variable from float to integer?

I want to use it to write list of polygons in loop:

for i:n:

polygon_name 1.pob

polygon_name 2.pob

polygon_name 3.pob

….

In other words, i dont want something like that:

 

Thanks,

Nadav

…..

 

Use the FORMAT keyword to change to an integer. 

FORMAT m INT 
The optional keyword INT indicates the value should be first converted to an integer and printed in integer format using the number of places specified by m.


Hi Sean,

It works,

Thank you very much,

Nadav


Reply