Jump to content

3d drawings transfer to the 2d isometric view


Recommended Posts

Posted

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!

Posted
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.

Posted

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" "")

)

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...