<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ImportSplineCvs error - number format changed in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8553470#M14742</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I am using ImportSplineCvs script to read in a number of points that was scanned with a Microscribe. The number format has three places after the decimal. It would seem that when the numbers are imported that the decimal place is moved one along to make the number contain only two digits after the decimal. This means that all the numbers grow by one decimal place.&lt;/P&gt;
&lt;P&gt;How do I change the resolution to contain three decimal places?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my number :- X =&amp;nbsp; 96.139&amp;nbsp; Y = -79.501&lt;/P&gt;
&lt;P&gt;number in fusion :- X = 961.39&amp;nbsp; Y = -795.01&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jan 2019 07:14:16 GMT</pubDate>
    <dc:creator>bluearccnc</dc:creator>
    <dc:date>2019-01-28T07:14:16Z</dc:date>
    <item>
      <title>ImportSplineCvs error - number format changed</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8553470#M14742</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I am using ImportSplineCvs script to read in a number of points that was scanned with a Microscribe. The number format has three places after the decimal. It would seem that when the numbers are imported that the decimal place is moved one along to make the number contain only two digits after the decimal. This means that all the numbers grow by one decimal place.&lt;/P&gt;
&lt;P&gt;How do I change the resolution to contain three decimal places?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my number :- X =&amp;nbsp; 96.139&amp;nbsp; Y = -79.501&lt;/P&gt;
&lt;P&gt;number in fusion :- X = 961.39&amp;nbsp; Y = -795.01&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 07:14:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8553470#M14742</guid>
      <dc:creator>bluearccnc</dc:creator>
      <dc:date>2019-01-28T07:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: ImportSplineCvs error - number format changed</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8554220#M14743</link>
      <description>&lt;P&gt;I didn't look at the source for the program but my guess is that it's expecting the values in the spreadsheet to be in internal units, which is always centimeters.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 13:32:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8554220#M14743</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2019-01-28T13:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: ImportSplineCvs error - number format changed</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8554441#M14744</link>
      <description>Ah ok that makes sense although it was not obvious from the code that &lt;BR /&gt;this is the case. Can one change the internal units to mm?&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jan 2019 14:51:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8554441#M14744</guid>
      <dc:creator>bluearccnc</dc:creator>
      <dc:date>2019-01-28T14:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: ImportSplineCvs error - number format changed</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8555125#M14745</link>
      <description>&lt;P&gt;The internal length units for Fusion are ALWAYS centimeters.&amp;nbsp; Fusion saves data and works in centimeters.&amp;nbsp; The only time it needs to care about other units is when it's getting input from the user or displaying values to the user.&amp;nbsp; This falls into the first case where it's getting values from the user through a CSV file.&amp;nbsp; You'll either need to modify the program to convert them or change the values in the CSV file.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 18:40:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8555125#M14745</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2019-01-28T18:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: ImportSplineCvs error - number format changed</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8556995#M14746</link>
      <description>&lt;P&gt;Hi Brian&lt;/P&gt;
&lt;P&gt;Thanks for the reply. I did go look everywhere I could but realized that I cannot change it so I modified the script by just dividing all the numbers by 10. Problem solved I think. Thanks for the help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 04:47:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/importsplinecvs-error-number-format-changed/m-p/8556995#M14746</guid>
      <dc:creator>bluearccnc</dc:creator>
      <dc:date>2019-01-29T04:47:54Z</dc:date>
    </item>
  </channel>
</rss>

