<?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 Re: AutoCAD API .net. Matrix3d accuracy in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-api-net-matrix3d-accuracy/m-p/7162087#M30932</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;i am writing an application in .net and i am trying to get a more precise transformation matrix.&lt;/P&gt;&lt;P&gt;currently, the only way to get values into the matrix is using the datatype double, this datatype is limited in the number of characters,&amp;nbsp;i would like to build my transformation matrix based on decimal datatype.&lt;/P&gt;&lt;P&gt;is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am doing something like this currently&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if (cells.Length == 16)
            {
                for (int i = 0; i &amp;lt; cells.Length; i++)
                {
                    data[i] = double.Parse(cells[i]);
                }
            }
            return new Matrix3d(data);&lt;/PRE&gt;&lt;P&gt;and i want to use decimal or just transform my data more accuratly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Matrix3d stores the matrix data as&amp;nbsp;type System.Double.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only way to be more precise, is to write your own Matrix3d class that stores information in whatever type you prefer.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2017 15:55:49 GMT</pubDate>
    <dc:creator>ActivistInvestor</dc:creator>
    <dc:date>2017-06-19T15:55:49Z</dc:date>
    <item>
      <title>AutoCAD API .net. Matrix3d accuracy</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-api-net-matrix3d-accuracy/m-p/7161678#M30931</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;i am writing an application in .net and i am trying to get a more precise transformation matrix.&lt;/P&gt;&lt;P&gt;currently, the only way to get values into the matrix is using the datatype double, this datatype is limited in the number of characters,&amp;nbsp;i would like to build my transformation matrix based on decimal datatype.&lt;/P&gt;&lt;P&gt;is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am doing something like this currently&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if (cells.Length == 16)
            {
                for (int i = 0; i &amp;lt; cells.Length; i++)
                {
                    data[i] = double.Parse(cells[i]);
                }
            }
            return new Matrix3d(data);&lt;/PRE&gt;&lt;P&gt;and i want to use decimal or just transform my data more accuratly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:04:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-api-net-matrix3d-accuracy/m-p/7161678#M30931</guid>
      <dc:creator>james</dc:creator>
      <dc:date>2017-06-19T14:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD API .net. Matrix3d accuracy</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-api-net-matrix3d-accuracy/m-p/7162087#M30932</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;i am writing an application in .net and i am trying to get a more precise transformation matrix.&lt;/P&gt;&lt;P&gt;currently, the only way to get values into the matrix is using the datatype double, this datatype is limited in the number of characters,&amp;nbsp;i would like to build my transformation matrix based on decimal datatype.&lt;/P&gt;&lt;P&gt;is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am doing something like this currently&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if (cells.Length == 16)
            {
                for (int i = 0; i &amp;lt; cells.Length; i++)
                {
                    data[i] = double.Parse(cells[i]);
                }
            }
            return new Matrix3d(data);&lt;/PRE&gt;&lt;P&gt;and i want to use decimal or just transform my data more accuratly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Matrix3d stores the matrix data as&amp;nbsp;type System.Double.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only way to be more precise, is to write your own Matrix3d class that stores information in whatever type you prefer.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 15:55:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-api-net-matrix3d-accuracy/m-p/7162087#M30932</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2017-06-19T15:55:49Z</dc:date>
    </item>
  </channel>
</rss>

