<?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: Orientation of z axis (Please don't laugh...) in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455477#M19121</link>
    <description>Thank you, that seems the sensible way to me as well. Thank you for the reply, I really appreciate it!&lt;BR /&gt;</description>
    <pubDate>Sun, 09 Dec 2018 16:42:09 GMT</pubDate>
    <dc:creator>alodi2</dc:creator>
    <dc:date>2018-12-09T16:42:09Z</dc:date>
    <item>
      <title>Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652552#M19109</link>
      <description>&lt;P&gt;When I orient to look from the top, why doesn't the z axis come towards me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The y axis does instead.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have I broken it somehow?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can it be changed?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why is it like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've come from 123d and it seemed logical that the x and y are flat on the ground with the z rising out of the ground.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 07:28:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652552#M19109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-28T07:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652568#M19110</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may change it to z up on Preferences dialog.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/286890i10326250048239D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;﻿&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jack&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 07:34:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652568#M19110</guid>
      <dc:creator>liujac</dc:creator>
      <dc:date>2016-10-28T07:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652573#M19111</link>
      <description>&lt;P&gt;Hey thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and can i get / set the y up / z up setting in the api?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 07:38:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652573#M19111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-28T07:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652583#M19112</link>
      <description>&lt;P&gt;Yes, this option can be changed by API GeneralPreferences.defaultModelingOrientation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;import adsk.core, adsk.fusion, adsk.cam, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        app.preferences.generalPreferences.defaultModelingOrientation = adsk.core.DefaultModelingOrientations.ZUpModelingOrientation
        ui.messageBox('Hello script')

    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))
&lt;/PRE&gt;
&lt;P&gt;Jack&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 07:44:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6652583#M19112</guid>
      <dc:creator>liujac</dc:creator>
      <dc:date>2016-10-28T07:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6654810#M19113</link>
      <description>&lt;P&gt;Thanks Jack&lt;/P&gt;</description>
      <pubDate>Sat, 29 Oct 2016 07:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6654810#M19113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-29T07:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6658862#M19114</link>
      <description>&lt;P&gt;Nothing changes in the display when I change the Default modeling orientation to Z up in the General preferences.&amp;nbsp; X still point right, Y still points through the top, Z still points through the Front. Why is this so difficult?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2016 23:37:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6658862#M19114</guid>
      <dc:creator>wkveitsiti</dc:creator>
      <dc:date>2016-10-31T23:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6658887#M19115</link>
      <description>&lt;P&gt;Changing the preference setting just changes it for any new documents you create but doesn't do anything to existing documents. &amp;nbsp;To change the orientation for an existing document reorient the view to what you want as either the front or top and then in the view cube menu use the "Set current view as" option and choose "Front" or "Top" to reset the view orientation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="currentView.png" style="width: 366px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/288044i803263FC2B20480A/image-size/large?v=v2&amp;amp;px=999" role="button" title="currentView.png" alt="currentView.png" /&gt;&lt;/span&gt;﻿&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2016 23:50:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6658887#M19115</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2016-10-31T23:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6666740#M19116</link>
      <description>&lt;P&gt;As for the WHY of this "strange default" - it's very historical. Here's the short short version as I recall it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the beginning there were only text terminals.&lt;/P&gt;&lt;P&gt;(0,0) referred to the first character in the first row on the display - which appeared in the top left.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next came 2D graphical interfaces and 2D games. These stuck with the convention everyone was used to that 0,0 is in the top left.&lt;/P&gt;&lt;P&gt;This history is why in most drawing API's X runs from left to right and Y runs from top to bottom.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next came a revolution - faking 3D with perspective drawing in "real time" using really amazing programming tricks (all before the days of 3D acceleration).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As 3D graphics emerged X and Y were already well established in what i'll call screen space where 0, 0 was fixed at the top left. This meant that Z must therefore be in the direction&amp;nbsp;of the user and the wall behind the screen. As an artist who only knows the old 2D system if you were to 'draw' a house in this new 3D which way would you consider to be "up"? Today nearly all physics engines, game engines, and 3D graphics engines treat the X,Z plane as "ground" and the Y axis&amp;nbsp;as elevation - it can really be frustrating to get used to but if you can think about it as "from the screens perspective" it make sense as the user will view the virtual world mapped to this 2D display which treats X as left-right and Y as up-down.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 03:06:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/6666740#M19116</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-04T03:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455041#M19117</link>
      <description>&lt;P&gt;Now that I read your responce to the confusion of Y being up and down vs. Z, I have question as well. Why do most VMC machines in the world have Z as up. Ive always used Z as up because my machines just work better that way or it makes more sense to use the machines that way. Everything Ive learned so far from basic geometry to complicated programming is taught &amp;nbsp;with the X/Y table flat. &amp;nbsp;I am relatively new at Fusion 360 and so far the &amp;nbsp;video lessons have Y as up &amp;nbsp;which makes the work harder for me. Its &amp;nbsp;like driving an excavator with the switch turned the opposite way. I just don’t understand, and id like to stick to one way. In your opinion should I relearn Y as up to make communication &amp;nbsp;of the work easier with most of you guys and Fusion as well. Please note that my frustration is totally not with you, its because I’m breaking my neck learning this stuff and this subject really makes it harder for me, especially in the tutorials.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 02:22:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455041#M19117</guid>
      <dc:creator>alodi2</dc:creator>
      <dc:date>2018-12-09T02:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455056#M19118</link>
      <description>&lt;P&gt;I model with z up, it just makes it easier to drop my parts into the slicer for 3d printing. I say do what is right for your toolchain, but I'm just a hobbyist &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 03:13:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455056#M19118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-09T03:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455466#M19119</link>
      <description>I totally agree!! Thank you&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Dec 2018 16:33:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455466#M19119</guid>
      <dc:creator>alodi2</dc:creator>
      <dc:date>2018-12-09T16:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455472#M19120</link>
      <description>&lt;P&gt;I don't understand the reasoning for not having Z as up either.&amp;nbsp; I voiced my concern for this before Inventor was released but obviously it didn't matter and Fusion 360 has continued in the same way.&amp;nbsp; If you're just designing, I guess it doesn't really matter how front and top are oriented as long as it makes sense to you.&amp;nbsp; But if you're manufacturing the part then Z up is what's correct.&amp;nbsp; Since the software is intended for manufacturing it seems like that would be the logical default.&amp;nbsp; At least we can change it but it does mean a lot of the tutorials and videos still use the default.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 16:39:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455472#M19120</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2018-12-09T16:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Orientation of z axis (Please don't laugh...)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455477#M19121</link>
      <description>Thank you, that seems the sensible way to me as well. Thank you for the reply, I really appreciate it!&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Dec 2018 16:42:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/orientation-of-z-axis-please-don-t-laugh/m-p/8455477#M19121</guid>
      <dc:creator>alodi2</dc:creator>
      <dc:date>2018-12-09T16:42:09Z</dc:date>
    </item>
  </channel>
</rss>

