午夜三级做爱黄片,午夜福利小视频,午夜国产成人精品,午夜黄色在线视频 - www.atkqc.com

由于操作過于頻繁著平,請點擊下方按鈕進行驗證苦旋!

用LISP語言自定義AutoCAD命令

AutoLISP語言作為AutoCAD的二次開發(fā)工具,雖然在功能腰埂、運行速度和保密性等方面比起ARX等工具要遜色一些,但由于它易學易用,交互性好,靈活性強,對于那些經(jīng)常使用AutoCAD進行繪圖的普通用戶來說,不失為一種理想的開發(fā)工具仇让。下面就介紹用AutoLISP語言自定義的幾個AutoCAD繪圖命令,可以起到簡化操作西饵、提高作圖效率的作用酝掩。

一、鍵槽尺寸視圖的繪制命令“jct”

在繪制軸眷柔、齒輪或帶輪等零件圖時,經(jīng)常需要畫軸上鍵槽處的剖視圖或輪轂鍵槽的端面視圖,比較麻煩棋叁;由于鍵槽的尺寸隨軸徑的變化而變化,所以我們可以用LISP程序來實現(xiàn)自動繪圖。加載下面的程序,在命令行中鍵入”jct”并回車,通過人機交互的形式輸入有關參數(shù),可自動完成軸上鍵槽的剖視圖和輪轂鍵槽的端面視圖的繪制允纬。代碼示例如下所示铜部。

(defunC:jct()

(setqpt0(getpoint"\n請輸入視圖的中心位置點:"))

(initget7)

(setqloopT)

(whileloop

(setqd(getreal"\n 請輸入鍵槽處的軸徑(12<130)(mm):"))< p>

(if(or(<d12)(>d130))

(alert"軸徑數(shù)據(jù)輸入錯誤!\n\n請重新輸入!")

(setqloopnil)

);if

);while

(cond;根據(jù)軸徑檢索鍵槽尺寸

((and(>d12)(<=d17))(setqb5t13.0t22.3));b表示鍵槽的寬度

((and(>d17)(<=d22))(setqb6t13.5t22.8));t1表示軸上鍵槽的深度

((and(>d22)(<=d30))(setqb8t14.0t23.3));t2表示輪轂上鍵槽的高度

((and(>d30)(<=d38))(setqb10t15.0t23.3))

((and(>d38)(<=d44))(setqb12t15.0t23.3))

((and(>d44)(<=d50))(setqb14t15.5t23.8))

((and(>d50)(<=d58))(setqb16t16.0t24.3))

((and(>d58)(<=d65))(setqb18t17.0t24.4))

((and(>d65)(<=d75))(setqb20t17.5t24.9))

((and(>d75)(<=d85))(setqb22t19.0t25.4))

((and(>d85)(<=d95))(setqb25t19.0t25.4))

((and(>d95)(<=d110))(setqb28t110.0t26.4))

((and(>d110)(<=d130))(setqb32t111.0t27.4)))

(command"circle"pt0"d"d)

(command"zoom""a")

(setqs1(ssget"l"))

(setqdi(-(*(/d2.0)(/d2.0))(*(/b2.0)(/b2.0)))

dx(sqrtdi)

dy(/b2.0)

pt1(list(+(carpt0)dx)(+(cadrpt0)dy)))

(initget"ZcLc");Zc表示畫軸鍵槽的剖視圖,Lc表示畫輪轂鍵槽的端面視圖

(setqzrl(getkword"\n畫軸鍵槽的剖視圖還是輪轂鍵槽的端面視圖(Z/L)?"))

(if(=zrl"Zc")

(progn;計算軸鍵槽上點的坐標

(setqpt2(list(+(carpt0)(-(/d2.0)t1))(+(cadrpt0)dy))

pt3(polarpt2(-(/pi2.0))b)

pt4(polarpt30(-dx(-(/d2.0)t1))))

);progn

);if

(if(=zrl"Lc")

(progn;計算輪轂鍵槽上點的坐標

(setqpt2(list(+(carpt0)(+(/d2.0)t2))(+(cadrpt0)dy))

pt3(polarpt2(-(/pi2.0))b)

pt4(polarpt3(-pi)(-(+(/d2.0)t2)dx)))

);progn

);if

(command"pline"pt1pt2pt3pt4"");畫鍵槽

(setqs2(ssget"l"))

(command"layer""m"5"l""center"5"c"15"")

(command"ltscale"8)

(command"line"(polarpt0(-pi)(+(/d2.0)10));畫中心線

(polarpt00(+(/d2.0)10))"")

(command"line"(polarpt0 (-(/pi2.0))(+(/d2.0)10))

(polarpt0(/pi2.0)(+(/d2.0)10))"")

(command"layer""s"0"")

(if(=zrl"Zc")

(progn

(setqs3(entsel"\n請選擇修剪的目標:"))

(command"trim"s2""s3"");修剪形成鍵槽

(command"hatch""U""45""2""n"s1s2""));畫軸上鍵槽處剖視圖的剖面線

);if

(if(=zrl"Lc")

(progn

(setqs4(entsel"\n請選擇修剪的目標:"))

(command"trim"s2""s4"");修剪形成鍵槽

(command"rotate"s1s2""pt090));將輪轂鍵槽的端面視圖旋轉90度

);if

);enddefun

<130)(mm):"))<>

null

聲明:本網(wǎng)站所收集的部分公開資料來源于互聯(lián)網(wǎng),轉載的目的在于傳遞更多信息及用于網(wǎng)絡分享氯也,并不代表本站贊同其觀點和對其真實性負責猾晨,也不構成任何其他建議。本站部分作品是由網(wǎng)友自主投稿和發(fā)布饮估、編輯整理上傳肃径,對此類作品本站僅提供交流平臺,不為其版權負責墙目。如果您發(fā)現(xiàn)網(wǎng)站上所用視頻精者、圖片、文字如涉及作品版權問題胰绢,請第一時間告知颊夷,我們將根據(jù)您提供的證明材料確認版權并按國家標準支付稿酬或立即刪除內(nèi)容,以保證您的權益钉答!聯(lián)系電話:010-58612588 或 Email:editor@mmsonline.com.cn础芍。

網(wǎng)友評論 匿名:

分享到