<?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: Create NGON by specifying edge length. in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706111#M11261</link>
    <description>&lt;P&gt;I think attached script is my old one...&lt;/P&gt;</description>
    <pubDate>Sat, 20 Jan 2018 14:42:36 GMT</pubDate>
    <dc:creator>aslantamjidi</dc:creator>
    <dc:date>2018-01-20T14:42:36Z</dc:date>
    <item>
      <title>Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705570#M11253</link>
      <description>&lt;P&gt;a little Script to aid exact creating Polygon shapes with specifying edge length.&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="nGon.PNG" style="width: 212px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/452340i92EECCAC019CAE4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="nGon.PNG" alt="nGon.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the Mathematics behind this script can be found on &lt;A href="https://www.calculatorsoup.com/calculators/geometry-plane/polygon.php" target="_blank"&gt;HERE&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 01:48:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705570#M11253</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2018-01-20T01:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705597#M11254</link>
      <description>&lt;P&gt;I've not tested this yet, but if it works then it appears to be exactly what autodesk needs to include in Max natively - maybe via a small update/patch for all versions and spare us the need to wait for a new release to get it.&amp;nbsp; Well done!&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 02:21:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705597#M11254</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T02:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705790#M11255</link>
      <description>&lt;P&gt;Nice one! I've taken the liberty to convert it to scripted shape primitive so that it appears in the same category that the original NGon does and you can create it with autogrid anywhere in the scene just like other primitives. Hope you don't mind:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;--	visit My webSite at: www.aslan3d.com
--	contact with my by: aslan.tamjidi@gmail.com

plugin shape NGonExt
	name:"NGonExt" category:"Splines" replaceUI:on
	extends:NGon classID:#(0x117e72e, 0x5ba1ec54)
	usePBValidity:on
(
	fn updateRadius = this.radius =
		 0.5d0 * this.edgeLength / (if this.type == 1 then tan else sin) (180d0 / this.sides)
	
	fn updateEdgeLength =
	(
		disableRefMsgs()
		this.params.spnEdgeLength.value =
			2 * this.radius * (if this.type == 1 then tan else sin) (180d0 / this.sides)
		enableRefMsgs()
	)

	parameters main rollout:params
	(
		radius type:#worldUnits default:5 ui:spnRadius
		type type:#integer default:2 ui:rbType
		sides type:#integer default:6 ui:spnSides
		edgeLength type:#worldunits ui:spnEdgeLength
		cornerRad type:#worldunits default:0 ui:spnCornerRadius
		circular type:#boolean default:off ui:chxCircular

		on edgeLength set val do updateRadius()
		on sides set val do (delegate.nSides = val; updateRadius())
		on type set index do (delegate.scribe = index - 1; updateRadius())
		on radius set val do (delegate.radius = val; updateEdgeLength())
		on cornerRad set val do delegate.cornerRadius = val
		on circular set state do delegate.circular = state
	)

	rollout params "NGon by Aslan3D.com" width:150
	(
		spinner spnRadius "Radius: " range:[0,1e6,10] type:#worldunits fieldWidth:70
		radioButtons rbType labels:#("Inscribed", "Circumscribed") columns:2 default:2
		spinner spnSides "Sides: " range:[3,100,6] type:#integer fieldWidth:70
		spinner spnEdgeLength "Edge Length: " range:[0,1e6,10] type:#worldunits fieldWidth:70
		spinner spnCornerRadius "Corner radius: " range:[0,1e6,0] type:#worldunits fieldWidth:70
		checkBox chxCircular "Circular" checked:off align:#center
	)

	tool create numPoints:2
	(
		on mousePoint click do if click == 1 do
			nodeTM.translation = worldPoint

		on mouseMove click do if click == 2 do
			radius = (gridDist.x^2 + gridDist.y^2)^.5
	)
)&lt;/PRE&gt;
&lt;P&gt;Since it extends the built-in NGon, you will also get the original params at creation time - those could be hidden but not that easily so I didn't bother. In the modify panel, only the new params will be shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;@Anonymous: if you put it inside the scripts\startup folder, it'll be&amp;nbsp;always at&amp;nbsp;your disposal.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 08:44:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705790#M11255</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T08:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705860#M11256</link>
      <description>&lt;P&gt;@Anonymous This is great!&amp;nbsp; The only problem I have is that I can't define where or how one of the edges is oriented.&amp;nbsp; eg:&amp;nbsp; I want to create a pentagon off of an already created edge, or based on the distance between 2 verts.&amp;nbsp; As it is, it creates the NGon just fine, but I don't know how to orient it so as to make one of the edges position as mentioned - along a given edge or between 2 verts.&amp;nbsp; Ideally, the creation process would go something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pick start point,&lt;/P&gt;&lt;P&gt;then pick a 2nd point to define the direction that one of the edges will run,&lt;/P&gt;&lt;P&gt;then (optional) define an exact length of the side.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This would allow us to create NGons with precise edge placement and/or edge length.&amp;nbsp; If you're familiar with how Rhino does it, that's what I'd love to see in Max.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how to add this functionality or how to achieve it after the NGon is created?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a screencast of what I want, but it's not showing in the drop down atm.&amp;nbsp; Will try to get it working and post a link so you can see what I'm on about.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 09:51:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705860#M11256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T09:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705863#M11257</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Screen cast showing how Rhino does NGons from edge.&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/3e3ccfef-95ef-434b-874c-e369dac53352" 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>Sat, 20 Jan 2018 09:54:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7705863#M11257</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T09:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706023#M11258</link>
      <description>&lt;P&gt;Yes, I think this should do the trick:&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="ngonSnap.gif" style="width: 500px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/452409i3E97172FE2E3F810/image-size/large?v=v2&amp;amp;px=999" role="button" title="ngonSnap.gif" alt="ngonSnap.gif" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not as smooth as Rhino, though, it will jump around a bit when snapping. Set the number of sides before you start drag-creating it, it will only respect the picked direction on creation, not when changing the params later on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;--	visit My webSite at: www.aslan3d.com
--	contact with my by: aslan.tamjidi@gmail.com

plugin shape NGonExt
	name:"NGonExt" category:"Splines" replaceUI:on
	extends:NGon classID:#(0x117e72e, 0x5ba1ec54)
	usePBValidity:on
(
	fn getRot vec =
	(
		local rot = atan2 vec.x vec.y
		if rot &amp;gt; 0 then rot else 360d0 + rot
	)

	fn updateRadius = this.radius =
		 0.5d0 * this.edgeLength / (if this.type == 1 then tan else sin) (180d0 / this.sides)
	
	fn updateEdgeLength =
	(
		disableRefMsgs()
		this.params.spnEdgeLength.value =
			2 * this.radius * (if this.type == 1 then tan else sin) (180d0 / this.sides)
		enableRefMsgs()
	)

	parameters main rollout:params
	(
		radius type:#worldUnits default:0 ui:spnRadius
		type type:#integer default:2 ui:rbType
		sides type:#integer default:5 ui:spnSides
		edgeLength type:#worldunits ui:spnEdgeLength
		cornerRad type:#worldunits default:0 ui:spnCornerRadius
		circular type:#boolean default:off ui:chxCircular

		on edgeLength set val do updateRadius()
		on sides set val do (delegate.nSides = val; updateRadius())
		on type set index do (delegate.scribe = index - 1; updateRadius())
		on radius set val do (delegate.radius = val; updateEdgeLength())
		on cornerRad set val do delegate.cornerRadius = val
		on circular set state do delegate.circular = state
	)

	rollout params "NGon by Aslan3D.com" width:150
	(
		spinner spnRadius "Radius: " range:[0,1e6,10] type:#worldunits fieldWidth:70
		radioButtons rbType labels:#("Inscribed", "Circumscribed") columns:2 offsets:#([2, 0], [-10, 0]) default:2
		spinner spnSides "Sides: " range:[3,100,6] type:#integer fieldWidth:70
		spinner spnEdgeLength "Edge Length: " range:[0,1e6,10] type:#worldunits fieldWidth:70
		spinner spnCornerRadius "Corner radius: " range:[0,1e6,0] type:#worldunits fieldWidth:70
		checkBox chxCircular "Circular" checked:off align:#center
	)

	tool create numPoints:2
	(
		local startPos, invTM, zDir, angle, vec
		local targetPos, dist, roet

		on mousePoint click do if click == 1 do
		(
			zDir = nodeTM.row3
			angle = 90 - 180d0 / sides
			invTM = inverseHighPrecision nodeTM
			startPos = nodeTM.translation = worldPoint
		)

		on mouseMove click do if click == 2 do
		(
			vec = worldPoint - startPos
			dist = .5 * length vec * tan angle
			edgeLength = (gridDist.x^2 + gridDist.y^2)^.5
			targetPos = startPos + vec / 2 + dist * cross zDir (normalize vec)
			rot = getRot (normalize (targetPos * invTM - startPos * invTM)) + 90

			nodeTM = angleAxis rot zDir as matrix3 * transMatrix targetPos
		)
	)
)&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Jan 2018 13:27:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706023#M11258</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T13:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706087#M11259</link>
      <description>&lt;P&gt;wow thank you Vojtěch Čada.&lt;/P&gt;&lt;P&gt;it's completely new script, from ground. your do it great always. I couldn't imagine as compact script as you write. &lt;img id="heart" class="emoticon emoticon-heart" src="https://forums.autodesk.com/i/smilies/16x16_heart.png" alt="Heart" title="Heart" /&gt;&lt;/P&gt;&lt;P&gt;this should be on ScriptSpot.com too...&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:19:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706087#M11259</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2018-01-20T14:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706098#M11260</link>
      <description>&lt;P&gt;My pleasure. Anyway, the last one I posted is wrong, the nodeTM seems to be set in grid space, not world space as I thought, so the mousetool should be instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;tool create numPoints:2
(
	local startPos, angle, vec
	local targetPos, dist, roet

	on mousePoint click do if click == 1 do
	(
		startPos = gridPoint
		angle = 90 - 180d0 / sides
		nodeTM.translation = worldPoint
	)

	on mouseMove click do if click == 2 do
	(
		vec = gridPoint - startPos
		dist = .5 * length vec * tan angle
		edgeLength = (gridDist.x^2 + gridDist.y^2)^.5
		targetPos = startPos + vec / 2 + dist * cross z_axis (normalize vec)
		rot = getRot (normalize (targetPos - startPos)) + 90

		nodeTM = angleAxis rot z_axis as matrix3 * transMatrix targetPos
	)
)&lt;/PRE&gt;
&lt;P&gt;I've attached the fixed script, there might be other mistakes...&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:48:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706098#M11260</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T14:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706111#M11261</link>
      <description>&lt;P&gt;I think attached script is my old one...&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:42:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706111#M11261</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2018-01-20T14:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706116#M11262</link>
      <description>&lt;P&gt;Ooops, sorry, edited.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:49:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706116#M11262</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T14:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706122#M11263</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp; I replaced the old script with your latest version nut now it no longer appears in the shapes tab but as a floating dialog whenever max starts up.&amp;nbsp; Did I do something wrong or is the script behaving different?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also not sure how to use it.&amp;nbsp; With the floating dialog up, i set the params and click Create, but it just creates a ngon at the origin with no drag functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I was a bit hasty - the new post works great.&amp;nbsp; A little jerky but totally functional.&amp;nbsp; Many thanks.&amp;nbsp; I also agree that this should be posted on ScriptSpot - I'm sure many others will find this script of value.&amp;nbsp; Great job!&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 15:01:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706122#M11263</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T15:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706132#M11264</link>
      <description>&lt;P&gt;See the edit above, I've goofed up and attached&amp;nbsp;aslantamjidi's original script instead at first.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:58:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706132#M11264</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T14:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706141#M11265</link>
      <description>&lt;P&gt;All we need now is to convince AutoDesk to add this as a update/patch to Max as a native operation and it'd be perfect.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 15:05:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706141#M11265</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T15:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706330#M11266</link>
      <description>&lt;P&gt;It kept bugging me that this is basically a creation-time hack, so I made a proper &lt;A href="http://www.scriptspot.com/3ds-max/scripts/ngon-by-edge" target="_blank"&gt;ngon by edge&lt;/A&gt;&amp;nbsp;spline&amp;nbsp;primitive. Doesn't have corner radius or circularize option, both would be possible but don't seem that useful when you're snapping to some existing edge. Holding shift when creating it constraints the axis to x/y.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 17:10:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706330#M11266</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T17:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706379#M11267</link>
      <description>&lt;P&gt;I'm not sure what a "creation-time hack" is, but this script is cool!&amp;nbsp; And the constrain with shift is a bonus as well.&amp;nbsp; I do have one issue though, If i create say a pentagon, then want to create another ngon off one of the edges, it seems that the orientation of the new ngon is dependant on which point you choose as the starting point of the edge.&amp;nbsp; This can get confusing because if you choose the wrong starting point, the new ngon would overlap the existing one as opposed to picking the opposite point and the orientation is away from the original ngon (if that makes any sense).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to suggest that IF you add the option to say hold down CTRL or ALT while dragging, the orientation of the new ngon would flip/mirror so you don't have to cancel the creation and start over with the opposite point to get the orientation right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that makes sense, but if you play with it you'll see what I mean - if not I'll try explaining it better.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 17:34:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706379#M11267</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T17:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706411#M11268</link>
      <description>&lt;P&gt;I like the way you think &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Holding ctrl now flips the shape (plus there's a UI parametr for that now).&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 17:53:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706411#M11268</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T17:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706425#M11269</link>
      <description>Autodesk really should consider offering you some contact work. It never ceases to amaze me how potent max scripting is - I wish I had the discipline and patience to learn it.</description>
      <pubDate>Sat, 20 Jan 2018 18:06:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706425#M11269</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-20T18:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706500#M11270</link>
      <description>&lt;P&gt;an other Idea...&lt;BR /&gt;you can separate creation mouse event to two click instead of one click&amp;amp;drag so then you have mouse wheel rotation to increase or decrease sides count on the go.&lt;BR /&gt;you are brilliant.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 18:47:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706500#M11270</guid>
      <dc:creator>aslantamjidi</dc:creator>
      <dc:date>2018-01-20T18:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706531#M11271</link>
      <description>&lt;P&gt;I agree that&amp;nbsp;users should be able to manipulate anything that has segments in that way. At the same time, I'm keeping mousewheel manipulation strictly to the KeyHydra toolset - if you're using it, you can add ngonEdge to the config &lt;A href="http://creativescratchpad.blogspot.com/2017/10/keyhydra-wheelcontrol-customization.html" target="_blank"&gt;manually&lt;/A&gt;&amp;nbsp;(the entry would&amp;nbsp;look almost the same as the ngon example shown on the gif).&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 18:59:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7706531#M11271</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2018-01-20T18:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create NGON by specifying edge length.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7707853#M11272</link>
      <description>&lt;P&gt;unfortunately the code for solution is not right and can't be used as plugin in general...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it's very easy to see -&amp;nbsp; just try to animate both Radius and Edge Length...&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Radius and Edge Length are cross-dependent values. So the code needs to be reviewed.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2018 01:34:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/create-ngon-by-specifying-edge-length/m-p/7707853#M11272</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2018-01-22T01:34:13Z</dc:date>
    </item>
  </channel>
</rss>

