<?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: How can I do this with 3ds MAX? in 3ds Max Modeling Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8544032#M8955</link>
    <description>&lt;P&gt;A little explanation on Video...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/8e71ebd1-e3ba-4f40-bfb4-57279504973e" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jan 2019 17:52:28 GMT</pubDate>
    <dc:creator>aslantamjidi</dc:creator>
    <dc:date>2019-01-23T17:52:28Z</dc:date>
    <item>
      <title>How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8515536#M8952</link>
      <description>&lt;P&gt;This is something&amp;nbsp;I need all the time and I have not found any easy way&amp;nbsp;to do this in Max.&amp;nbsp; Can someone help?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Extend face (software: FormZ)" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/589774i6FDC5811C9ECD97C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Support_face_projection_sk.jpg" alt="Extend face (software: FormZ)" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Extend face (software: FormZ)&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 09:27:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8515536#M8952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-11T09:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8516653#M8953</link>
      <description>&lt;P&gt;I cannot think of an easy way but here's my first try.&lt;/P&gt;
&lt;P&gt;With snaps set to Edge/segment create a line along each edge that want extruded (red lines). Now move these lines along their edge and then create create a closed line between the 4 line ends (blue line).&amp;nbsp; The closed spline can then be extruded to the correct thickness and unioned.&lt;/P&gt;
&lt;P&gt;Not simple but it works.&amp;nbsp; A simple script could simplify this process a bit.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="extr.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/589944i2E0223F5B84B59EC/image-size/large?v=v2&amp;amp;px=999" role="button" title="extr.PNG" alt="extr.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 17:05:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8516653#M8953</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2019-01-11T17:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8516811#M8954</link>
      <description>&lt;P&gt;I created the following simple script to simplify the process I outline above.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run the script after creating the 4 vertex red line to get the closed green line.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ext2.PNG" style="width: 868px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/589974i85EA04A06009A76A/image-size/large?v=v2&amp;amp;px=999" role="button" title="ext2.PNG" alt="ext2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;--  A 4 vertex colde spline is create from a selected 4 vertex spline such that
-- a new vertex is create in line with vertices 1 &amp;amp; 2 (e5) and 3 &amp;amp; 4 (e6).  
-- The distance from e2 to e5  = e1 to e2.
-- L. Minardi  1/11/2019 
-- 
for spl in selection where classof spl == line do (
s=1
e1 = getKnotPoint spl s 1 
e2 = getKnotPoint spl s 2
e3 = getKnotPoint spl s 3 
e4 = getKnotPoint spl s 4
v12 = e2-e1  -- vector from vertex 1 to 2
vlen = length(v12)
v12u = v12/vlen  -- unit vector
e5 = e2 + v12u*vlen
v43 = e3-e4
v43u = v43/vlen  -- unit vector
e6 = e3 + v43u*vlen

local sp = splineShape()
addnewSpline sp
addKnot sp 1 #corner #line e2
addKnot sp 1 #corner #line e5
addKnot sp 1 #corner #line e6
addKnot sp 1 #corner #line e3
close sp 1
updateShape sp
select sp	
	)&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Jan 2019 17:58:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8516811#M8954</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2019-01-11T17:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8544032#M8955</link>
      <description>&lt;P&gt;A little explanation on Video...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/8e71ebd1-e3ba-4f40-bfb4-57279504973e" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 17:52:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8544032#M8955</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2019-01-23T17:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8544292#M8956</link>
      <description>&lt;P&gt;And here if our parts are completely&amp;nbsp; separate Objects...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/7d694df3-781b-44d0-a7e4-0af34f5c1e68" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 18:54:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8544292#M8956</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2019-01-23T18:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8548935#M8957</link>
      <description>&lt;P&gt;Thank you very much for the reply. &lt;BR /&gt;I was hoping for something that did not involve so many clicks as this is a repeating task in some of my projects.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 09:36:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8548935#M8957</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-25T09:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8548949#M8958</link>
      <description>&lt;P&gt;Thank you very much for the reply and the time you took to explain your solutions. &lt;BR /&gt;I have been using the quickslice tool in almost the same manner as you described, but I was hoping for something that did not involve so many clicks as this is a repeating task in some of my projects.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 09:40:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8548949#M8958</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-25T09:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8551117#M8959</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;may I ask you first for what you need this "all the time"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because to me it doesn´t seem to be something many modelers would use all the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also I would like to know if your final result should be connected or be 2 different objects/elements?&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jan 2019 03:56:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8551117#M8959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-26T03:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this with 3ds MAX?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8551281#M8960</link>
      <description>&lt;P&gt;Here a video about the solutions I would use. Hope it helps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1epaMC1_yJLQweqCvjj9yZK5qYzf2uXdj/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1epaMC1_yJLQweqCvjj9yZK5qYzf2uXdj/view?usp=sharing&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About a mistake in the video: It´s transformation coordinate center of course and not system&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jan 2019 09:18:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-modeling-forum/how-can-i-do-this-with-3ds-max/m-p/8551281#M8960</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-26T09:18:22Z</dc:date>
    </item>
  </channel>
</rss>

