3DCADWorld Network | 3DCADTips | 3DCADTutorials | 3DCADForums | 3DCADSearch | 3DCADBooks | Design World






Get CAD tips and tutorials on your desktop when you register at 3DCADTips.com!

3DCADTips Weekly
Latest Issue
Archive

3DCADTips Forum Update
Latest Issue
Archive






Visit 3DCADSearch.com - The CAD & Graphics Search Engine!!





Go Back   3DCADForums > CAD Communities > AutoCAD Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

web
All
Tips
Tutorials
Books
Forums
Downloads
 


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old October 4th, 2006, 10:05 AM
Ricky Ricky is offline
Member
 
Join Date: Jun 2006
Posts: 34
Default AutoCAD 2005 Tip - Know how to snap midpoint between two points

As there is no direct snap to locate midway point between two points, we can acheive the same by using the command line calculator 'CAL. The expression to be used is "MEE" or "(end+end)/2", which stands for midpoint between two endpoints. For example, to start a new line at the midpoint between endpoints of two lines, draw two lines at an angle to each other and start the line command again and at the Specify First Point prompt enter 'cal and at the Initializing expression prompt enter mee, now selec the two points as prompted. The line initiated in step 2 will start at the midpoint between the selected endpoints, and you will be prompted for the next point.
I hope this tip will help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Link


  #2 (permalink)  
Old October 5th, 2006, 07:15 AM
sundance49
 
Posts: n/a
Default Mid Between Two Points

Wouldn't using the Mid Between Two Points Snap be more practical and less esoteric?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old October 5th, 2006, 08:05 AM
Ricky Ricky is offline
Member
 
Join Date: Jun 2006
Posts: 34
Smile

Hi sundance49,
As far as I know there is no direct snap to locate a point midway between two endpoints in space for AutoCAD 2000-2006.
Which version are you using?
Regards.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old October 7th, 2006, 10:41 AM
Halaszm
 
Posts: n/a
Lightbulb Snap to midpoint

Hi!

A solution is a short AutoLisp macro:
(defun midpt (/ a b)
(initget 1)
(setq a (getpoint "\nFirst point: "))
(initget 1)
(setq b (getpoint "\nSecond point: "))
(setq pt (polar a (angle a b) (/ (distance a b) 2.0)))
)
Using this you should copy it to visual lisp editor, save it, and load to Autocad. Then choose a command eg LINE, enter (midpt) and follow the instructions in the command line.
There is a possibility to load it automatically or make an icon-button too.
If you have any problem do not hesitate to ask me.

Best regards
Halaszm
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old October 16th, 2006, 11:03 AM
sundance49
 
Posts: n/a
Default Mid point between to ends

Hi,
Sorry to take so long getting back to you. I use Autocad 2006. But I do have 2007 at home. If what you are attempting to do is being done in a version lower than 2005 I guess you would have a problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old October 24th, 2006, 11:52 AM
Halaszm
 
Posts: n/a
Smile Snap to midpoint

Hi sundance49,

Why do you think so? It works in all version of AutoCad which understand Autolisp.

Regards
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -6. The time now is 12:20 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0