<?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: Stereographic Projection in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777686#M95915</link>
    <description>&lt;P&gt;That seems overkill for what I'd like.&amp;nbsp; I'm sure it would work, but it would have it's own complications.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The stereographic projection here is a 2D plot that represents points on the surface of a sphere.&amp;nbsp; It is probably easier to just convert angles to Cartesian coordinates and plot on a 2D plane.&amp;nbsp; I guess I was just wondering if anyone had done that and I could reuse their work rather than starting anew.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 13:54:22 GMT</pubDate>
    <dc:creator>dhovis216</dc:creator>
    <dc:date>2024-07-31T13:54:22Z</dc:date>
    <item>
      <title>Stereographic Projection</title>
      <link>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777420#M95882</link>
      <description>&lt;P&gt;This may be a long shot, but has anyone plotted stereographic projections in JMP?&amp;nbsp; These are often used to represent the orientation of various crystal directions/planes, though it can be used for any projection relative to a sphere.&amp;nbsp; I couldn't find anything searching.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 13:49:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777420#M95882</guid>
      <dc:creator>dhovis216</dc:creator>
      <dc:date>2024-07-30T13:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Stereographic Projection</title>
      <link>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777453#M95887</link>
      <description>&lt;P&gt;kind of, probably, yes.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66613iFBDE9AC10421AB11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JMP uses Open GL to display rotatable 3D objects&lt;/P&gt;
&lt;P&gt;This is a fun example from the scripting index.&lt;/P&gt;
&lt;P&gt;Note: In the scripting index, search for "Open GL" to find objects and functions that might be handy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
gridsize = 10;
npoints = 32;
points = J( npoints, 3, 0 );
For( i = 0, i &amp;lt; npoints, i++,
	points[i, 1] = Random Uniform() - .5;
	points[i, 2] = Random Uniform() - .5;
	points[i, 3] = Random Uniform() - .5;
);
surface = Scene Display List();
surface &amp;lt;&amp;lt; Enable( MAP2_VERTEX_3 );
surface &amp;lt;&amp;lt; Enable( Auto_Normal );
surface &amp;lt;&amp;lt; MapGrid2( gridsize, 0, 1, gridsize, 0, 1 );
surface &amp;lt;&amp;lt; color( 0, 0, 1 );
surface &amp;lt;&amp;lt; Map2(
	MAP2_VERTEX_3, 0, 1, 3, 4, 0, 1, 12, 4, points
);
surface &amp;lt;&amp;lt; EvalMesh2(
	LINE, 0, gridsize, 0, gridsize
);
sb = Scene Box( 500, 400 );
sb &amp;lt;&amp;lt; Ortho( -.75, .75, -.75, .75, -1, 1 );
sb &amp;lt;&amp;lt; ArcBall( surface, 1 );
New Window( "Example", sb );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 15:53:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777453#M95887</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2024-07-30T15:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Stereographic Projection</title>
      <link>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777686#M95915</link>
      <description>&lt;P&gt;That seems overkill for what I'd like.&amp;nbsp; I'm sure it would work, but it would have it's own complications.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The stereographic projection here is a 2D plot that represents points on the surface of a sphere.&amp;nbsp; It is probably easier to just convert angles to Cartesian coordinates and plot on a 2D plane.&amp;nbsp; I guess I was just wondering if anyone had done that and I could reuse their work rather than starting anew.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 13:54:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stereographic-Projection/m-p/777686#M95915</guid>
      <dc:creator>dhovis216</dc:creator>
      <dc:date>2024-07-31T13:54:22Z</dc:date>
    </item>
  </channel>
</rss>

