<?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: Jigging Splitting Polyline in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119876#M8031</link>
    <description>&lt;P&gt;i have searched how to use jigging but still haven't found a solution to do so&lt;/P&gt;</description>
    <pubDate>Sun, 23 Jul 2023 02:21:06 GMT</pubDate>
    <dc:creator>ChuotSieuNhan</dc:creator>
    <dc:date>2023-07-23T02:21:06Z</dc:date>
    <item>
      <title>Cutting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12118902#M8027</link>
      <description>&lt;P&gt;Hello everyone, I use Google Translate to ask questions in English, hope you understand, can you guide how to split polyline into 2 polyline segments and show the preview length as shown in the video below. I have researched through Jigging but still have not found a solution. Hope you can help me to solve the above problem. Thank you &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 09:14:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12118902#M8027</guid>
      <dc:creator>ChuotSieuNhan</dc:creator>
      <dc:date>2023-12-22T09:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12118906#M8028</link>
      <description>&lt;P&gt;I want when I click on the Polyline to cut the polyline into 2 segments and display the preview length so I can choose the desired length.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 06:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12118906#M8028</guid>
      <dc:creator>ChuotSieuNhan</dc:creator>
      <dc:date>2023-07-22T06:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119189#M8029</link>
      <description>&lt;P&gt;&lt;SPAN&gt;i really need help &lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 12:16:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119189#M8029</guid>
      <dc:creator>ChuotSieuNhan</dc:creator>
      <dc:date>2023-07-22T12:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119598#M8030</link>
      <description>&lt;P&gt;What have you tried so far ?&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 20:08:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119598#M8030</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2023-07-22T20:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119876#M8031</link>
      <description>&lt;P&gt;i have searched how to use jigging but still haven't found a solution to do so&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jul 2023 02:21:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12119876#M8031</guid>
      <dc:creator>ChuotSieuNhan</dc:creator>
      <dc:date>2023-07-23T02:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12122532#M8032</link>
      <description>&lt;P&gt;Whether you can use "Jig" or not, the essence of your issue is to help user to select a split point on a line/polyline (or in general, a Curve) with visual aid, which would show potential points to pick (not just anywhere along the curve), the length of the two split segments (as for the overlaps required as your picture show, it is just for extra calculation). That is, with a given line, you only need to visually guide user to pick a slit point. Once the split point is obtained, you can do whatever with it (actual splitting the line/curve into 2, extending the 2 segments to an overlapped range, ...).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Surely, you can create your own Jig to do this. Out of the 2 Jig classes - EntityJig and DrawJig - you would likely to use DrawJig for it. However, Since you want the single line/polyline entity being drawn as 2 separate entities, it would make things a bit complicated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the nature of the operation is just to let user pick a point on the line/polyline, I think that it would be rather simple to call Editor.GetPoint() and wrap the call in between adding/removing a handler to Editor.PointMonitor(), and presenting visual aid inside the handler with Transient Graphics.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I took a bit of time to put together a small project showing the techniques of how to visually help user to pick a split point on a line. I'll post the entire code of the project in my blog shortly when I can find some time. Stay tuned.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 15:29:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12122532#M8032</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-07-24T15:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12123661#M8033</link>
      <description>&lt;P&gt;As promised, see my blog post here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://drive-cad-with-code.blogspot.com/2023/07/selecting-split-point-of-line-with.html" target="_blank" rel="noopener"&gt;https://drive-cad-with-code.blogspot.com/2023/07/selecting-split-point-of-line-with.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, the code is only meant to demonstrate the techniques to add visual aids to the simple task of select a point by mouse, thus not exactly as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14200335"&gt;@ChuotSieuNhan&lt;/a&gt;&amp;nbsp;asked. But one should be able to easily make necessary changes/enhancements to do the same/similar things to make AutoCAD user's point selecting much easier and accurate as the business requires.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 02:14:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12123661#M8033</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-07-25T02:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging Splitting Polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12124280#M8034</link>
      <description>&lt;P&gt;&amp;nbsp;Thank you very much&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 08:35:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/cutting-polyline/m-p/12124280#M8034</guid>
      <dc:creator>ChuotSieuNhan</dc:creator>
      <dc:date>2023-07-25T08:35:42Z</dc:date>
    </item>
  </channel>
</rss>

