Jump to content

Flatten cone


sdbell

Recommended Posts

I need to draw an offset cone in 3D, then flatten it out to get a pattern which I can then dimension for ultimate fabrication in fibreglass. Can I do this in Autocad 2000, and if so how? Thanks.

 

David

Link to comment
Share on other sites

I need to draw an offset cone in 3D, then flatten it out to get a pattern which I can then dimension for ultimate fabrication in fibreglass. Can I do this in Autocad 2000, and if so how? Thanks.

 

David

 

You can do that in AutoCAD but be prepared, AutoCAD will not do it for you.

Don't know what you mean by "offset" cone neither.?

Link to comment
Share on other sites

I sometimes have to make fabric patterns for truncated cones. I made up this "how to", so that I didn't have to remember how to do it each time...or so that others could do it in my absence.

 

Conepatterntemplate.jpg

Link to comment
Share on other sites

  • 3 years later...

sdbell,

Here's a lisp program that you can load, it takes your keyboard input of dimensions and steal thickness. Then draws it in the flat for the cutter & roller.

 

; Convert angle in degrees to radians
       (defun dtr (a)
       (* pi(/ a 180.0))
       )
; Configs Cones & Draws it in the flat
(defun c:coneflat ()
 (setvar "lunits" 2)
 (setvar "luprec" 2)
 (SETQ PCK1 (Getpoint "\nPick Location of Cone: "))
 (SETQ LD (GETREAL "\nEnter Large ID: "))
 (SETQ SD (GETREAL "\nEnter Small ID: "))
 (SETQ H (GETREAL "\nEnter Mean Height of Cone: "))
 (SETQ THK (GETREAL "\nEnter Thickness: "))
 (setq D (+ LD THK))
 (setq D1 (+ SD THK))
 (setq 2b (- D D1))
 (setq b (/ 2b 2))
 (setq sqh (* h h))
 (setq sqb (* b b))
 (setq sqrc (+ sqb sqh))
 (setq c (sqrt sqrc))
 (setq r (/ D 2))
 (setq R2 (/ (* c r) b))
 (setq e (- R2 c))
 (setq deg (* (/ r R2) 360))
 (setq lim (* R2 2))
 (setq limi (+ lim 20))
 (command "circle" PCK1 e)
 (command "circle" PCK1 R2)
 (setq Ptt2 (polar PCK1 (dtr 0.0) R2))
 (setq Ptt3 (polar PCK1 (dtr 0.0) e))
 (command "line" Ptt2 Ptt3 "")
 (command "line" Ptt2 Ptt3 "")
 (command "zoom" "c" PCK1 limi "")
 (command "rotate" "l" "" PCK1 deg)
 (setq Ptt4 (polar PCK1 (dtr 358.0) (+ r2 10.0)))
 (command "trim" "" "f" PCK1 Ptt4 "" "") 
)

Edited by SLW210
Add code tags!
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...