Jump to content

Drawing cylindrical break line ?


liuhaixin88

Recommended Posts

  • Replies 48
  • Created
  • Last Reply

Top Posters In This Topic

  • liuhaixin88

    21

  • Tharwat

    16

  • ReMark

    4

  • highflybird

    4

Top Posters In This Topic

Posted Images

I don't know. Have you tried a search? I think the topic has come before but most likely different terminology was used. Try "pipe end".

Link to comment
Share on other sites

I don't know. Have you tried a search? I think the topic has come before but most likely different terminology was used. Try "pipe end".

 

Thank you for your reply, Remark, I use search ,only find this:

It's not perfect !

 

;;;=================================================================*                                        *
;;;zml84  2010-03-18                                        *
(defun c:tt ()
 (if (and (setq pt1 (getpoint "\nPT1: "))
   (setq pt2 (getpoint pt1 "\nPT2: "))
     )
   (progn
     (tt-01 pt1 pt2)
     (if (setq pt3 (getpoint pt2 "\nPT3: "))
(tt-01 pt3
       (polar pt3 (angle pt2 pt1) (distance pt2 pt1))
)
     )
   ) ;
 )
 (princ)
)
;;;=================================================================*                            *
(defun tt-01 (pt1 pt2 / ang dist pt_tmp1)
 (setq ang  (angle pt1 pt2)
dist (distance pt1 pt2)
 )
 (setq pt_tmp1 (polar pt1 ang (* 0.5 dist)))
 (command "_.pline"
   "non"
   pt1
   "a"
   "d"
   (+ (* 180 (/ ang pi)) -45)
   "non"
   pt_tmp1
   "non"
   pt2
   "d"
   (+ (* 180 (/ ang pi)) 180 45)
   "non"
   pt_tmp1
   ""
 )
 t
)

Link to comment
Share on other sites

Thank you ,Tharwat, nice to see you again .

 

Thanks :)

 

Download PDC.rar ? Can't unzip, file corruption.

 

It is not , do you have a win.rar compression program installed on your system ?

Link to comment
Share on other sites

Thanks :)

 

 

 

It is not , do you have a win.rar compression program installed on your system ?

 

Yes, I Have installed winRAR on my system.

Mybe my internet have fault.

Link to comment
Share on other sites

Try this and it may help .

 

Right clock on the PDC.rar file and go to General tab and on the left down hand side there must be one button Unlock press it and Apply then Okay .

 

Then extract the folder to any destination you want and let me know .

Link to comment
Share on other sites

Try this and it may help .

 

Right clock on the PDC.rar file and go to General tab and on the left down hand side there must be one button Unlock press it and Apply then Okay .

 

Then extract the folder to any destination you want and let me know .

 

Sorry, my internet have fault ,when input that “Very difficult to identify the verification code”, Web page does not open properly.

Link to comment
Share on other sites

Try this and it may help .

 

Right clock on the PDC.rar file and go to General tab and on the left down hand side there must be one button Unlock press it and Apply then Okay .

 

Then extract the folder to any destination you want and let me know .

 

Finally the download is complete. but con't run.

two sld file and pdc.vlx in the Support Folder .(E:\Program Files\AutoCAD 2010\Support),appload "pdc.vlx" and run "pdc"

 

Always pop:

2014-4-23 0-01-37.jpg

Link to comment
Share on other sites

As I have mentioned before you should add the Slide images and if you add the .vlx file , it is okay and up to you .

 

How to add the slide images? Round DisConnection.sld & Cut DisConnection.sld and PDC.VLX together in support folder.

Link to comment
Share on other sites

How to add the slide images? Round DisConnection.sld & Cut DisConnection.sld and PDC.VLX together in support folder.

The .vlx file is not important but the slide images should be cut and paste in Support Folder and that is it ;)

Link to comment
Share on other sites

The .vlx file is not important but the slide images should be cut and paste in Support Folder and that is it ;)

 

Yes ,I am sure to do that, two sld file in support floder !but always pop error dialog.

Link to comment
Share on other sites

It took me all of 30 seconds to find, download, extract, and move the three files, then start AutoCAD, appload the command and run it. Worked the first time out in AutoCAD 2010. You must have done something wrong. Are you sure the two slide files are in the right folder?

Link to comment
Share on other sites

It took me all of 30 seconds to find, download, extract, and move the three files, then start AutoCAD, appload the command and run it. Worked the first time out in AutoCAD 2010. You must have done something wrong. Are you sure the two slide files are in the right folder?

 

Thank you for your test. I am sure to do that, two slide in "E:\Program Files\AutoCAD 2010\Support" , My cad Installation path "E:\Program Files\AutoCAD 2010\acad.exe"

Link to comment
Share on other sites

After adding the two slide images go back to Autocad and copy and paste the following into your command line and let me know the outcome .

 

(findfile "Round DisConnection.sld")

Or this .

 

(findfile "Cut DisConnection.sld")

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...