Export Points from object into txt file

 From:  Michael Gibson
9071.5 In reply to 9071.4 
Hi dune1982, to change that open the SavePointFile.js file in a text editor and go to line number 58 which currently has this:

code:
		for ( var j=0; j < 3; j++ )
		{
		    pt[j] = round( pt[j], Digits );
		}


Modify it by adding in a new line like this:

code:
		for ( var j=0; j < 3; j++ )
		{
		    pt[j] = round( pt[j], Digits );
		    pt[j] = pt[j].toString().replace( '.', ',' );
		}


That should then make the decimal point separator to be a comma instead of a point. But that may cause problems if you also use a comma as the delimiter between points as well.

- Michael