<?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: Mirror object automatically in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7536340#M112205</link>
    <description>&lt;P&gt;... winches, cleats, vents, stanchions, barber hauls, lee boards, side stays, back stays, Harken blocks, life boats, hoists, railings, gun mounts, swimming pools and slides, bocci courts, shuffle board courts, tiki bars, etc., etc., etc.&lt;/P&gt;</description>
    <pubDate>Sat, 11 Nov 2017 15:15:10 GMT</pubDate>
    <dc:creator>john.uhden</dc:creator>
    <dc:date>2017-11-11T15:15:10Z</dc:date>
    <item>
      <title>Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535341#M112200</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a way to get entities too be automatically mirrored from a reference axis And updating everytime i put a new object.&lt;/P&gt;&lt;P&gt;im a working on a structure on a deck of a boat. I want to be able too work only on one side of the boat as the other side of the reference line in red mirrors automaticaly everything i do over it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this&amp;nbsp;is clear.&lt;/P&gt;&lt;P&gt;thanks !&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ps: here the link of what i want to achieve (not in 3d tho) &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=3LwQO_tWTAQ" target="_blank"&gt;https://www.youtube.com/watch?v=3LwQO_tWTAQ&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="autocad support.png" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/424729i3D95145E9D4F5551/image-size/large?v=v2&amp;amp;px=999" role="button" title="autocad support.png" alt="autocad support.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:17:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535341#M112200</guid>
      <dc:creator>jonathan.craig</dc:creator>
      <dc:date>2017-11-10T20:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535383#M112201</link>
      <description>&lt;P&gt;Define one half of it as a Block, Mirror that across the center-line axis, and do your&amp;nbsp;working-on-it within REFEDIT or BEDIT.&amp;nbsp; When you get out of that and Save the changes, the other side will update.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:35:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535383#M112201</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-11-10T20:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535469#M112202</link>
      <description>&lt;P&gt;Kent's advice is very sound.&amp;nbsp; I much prefer refedit to bedit.&amp;nbsp; I only use bedit if I'm going to use dynamic properties in a block.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use blocks a ton and refedit alot so I wrote some simple lisp to help speed the editing up.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Defun C:TLC-Reference_Edit ()&lt;BR /&gt; (setvar "cmdecho" 1)&lt;BR /&gt; (command "-refedit" pause "O" "A" "Y")&lt;BR /&gt; (setvar "cmdecho" 0)&lt;BR /&gt; (progn)&lt;BR /&gt; );defun&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Defun C:TLC-Reference_Save ( / tlv-refname)&lt;BR /&gt; (if (/= (getvar "refeditname") "")&lt;BR /&gt; (progn&lt;BR /&gt; (setq tlv-refname (getvar "refeditname"))&lt;BR /&gt; (command "refclose" "s")&lt;BR /&gt; (command "attsync" "n" tlv-refname)&lt;BR /&gt; );progn&lt;BR /&gt; (princ "Not in Ref Edit Mode. Exiting")&lt;BR /&gt; );if&lt;BR /&gt; (princ)&lt;BR /&gt; );defun&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add to your .pgp file like I did if you like:&lt;/P&gt;
&lt;P&gt;RED, *TLC-Reference_Edit&lt;BR /&gt;RS, *TLC-Reference_Save&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:12:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535469#M112202</guid>
      <dc:creator>Shneuph</dc:creator>
      <dc:date>2017-11-10T21:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535773#M112203</link>
      <description>&lt;P&gt;What's wrong with the Extend command, especially with Fence?&amp;nbsp; Or are the port-&amp;gt;starboard lines supposed to be separate, port and starboard?&lt;/P&gt;</description>
      <pubDate>Sat, 11 Nov 2017 01:46:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7535773#M112203</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-11-11T01:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7536215#M112204</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;What's wrong with the Extend command, especially with Fence?&amp;nbsp; Or are the port-&amp;gt;starboard lines supposed to be separate, port and starboard?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Surely nothing's wrong with Extend, but widen your horizons -- there are &lt;EM&gt;so&lt;/EM&gt;&amp;nbsp; many other kinds of "work" they might want to do on it [add linework running in other directions than perpendicular to the mid-line, openings, bolts, re-shape the perimeter, hatch areas, etc., etc.].&lt;/P&gt;</description>
      <pubDate>Sat, 11 Nov 2017 12:56:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7536215#M112204</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-11-11T12:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror object automatically</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7536340#M112205</link>
      <description>&lt;P&gt;... winches, cleats, vents, stanchions, barber hauls, lee boards, side stays, back stays, Harken blocks, life boats, hoists, railings, gun mounts, swimming pools and slides, bocci courts, shuffle board courts, tiki bars, etc., etc., etc.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Nov 2017 15:15:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mirror-object-automatically/m-p/7536340#M112205</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-11-11T15:15:10Z</dc:date>
    </item>
  </channel>
</rss>

