ionica Posted August 23, 2009 Posted August 23, 2009 Im doing an isometric view dwg detail. How can i transfer the 3d dwg detail into the isometric view dwg in 2D? If i copy paste the 3d dwg in isometric view 2D the 3D drawing it will become top view. Im using autocad 2007 Any body can help. Thanks! Quote
Cad64 Posted August 23, 2009 Posted August 23, 2009 What version of Autocad are you using? Please update your profile. Quote
rkent Posted August 24, 2009 Posted August 24, 2009 Im doing an isometric view dwg detail. How can i transfer the 3d dwg detail into the isometric view dwg in 2D? If i copy paste the 3d dwg in isometric view 2D the 3D drawing it will become top view. Im using autocad 2007 Any body can help. Thanks! Simply draw your 3D model in model space. Now in a layout tab create a viewport. Now use the View command, and use the SE, (or SW, NE, NW) view. Use 3DFORBIT to further refine what you want to show in an iso view. Quote
Biscuits Posted August 25, 2009 Posted August 25, 2009 Try this ;Create 2D image from 3D (defun c:CREATE2D (/ BLK) ;Routine works on "01" tab ;User must select objects to be converted to 2D (COMMAND "-LAYOUT" "R" "Layout1" "01") (COMMAND "-LAYOUT" "SET" "01") (COMMAND "MSPACE") (COMMAND "ZOOM" "EXTENTS") (SETQ BM (SSGET)) ; this is where user must select objects (COMMAND "SOLPROF" BM "" "YES" "YES" "NO") (COMMAND "-LAYER" "NEW" "EIEIO" "SET" "EIEIO" "") (COMMAND "-LAYER" "FREEZE" "*" "THAW" "PV*, FACE*" "") (COMMAND "SCALE" "ALL" "" "0,0,0" "1.224744871") (COMMAND "-LAYOUT" "SET" "MODEL") (COMMAND "UCS" "NEW" "VIEW") (COMMAND "COPYBASE" "0,0,0" "ALL" "") ) Quote
Recommended Posts
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.