亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 橋縱斷面.lsp

?? 畫橋址斷面的lisp源代碼
?? LSP
?? 第 1 頁 / 共 4 頁
字號:
;;橋梁勘測常用程序匯
(defun qz (x n / s1 m)
(setq m (/ n 2))
(if (>= x 0)(setq x (+ x m)) (setq x (- x m)))
(setq s1 (/ x n))
(setq s1 (fix s1))
(setq x (* s1 n))
)
(defun c:cx (/ h h1 bl p0 p0zb p dp pd ps l1 l2 l3 p1 p2 p3 p4 s1 s2)
(command "layer" "m" "經(jīng)緯距"  "")
;(command "style" "xsyst" "宋體" 0 0.75 0 "n" "n" "n")
(command "style" "xsy" "italc1,fs" 0 0.75 0 "n" "n" "n")
(command "linetype" "s" "continuous" "")
(setvar "blipmode" 0)
(setq bl (getreal "\n比例:"))
(setq bl (* bl 0.1))
(setq n (* 100 bl))
(setvar "osmode" 33)
(setq p0 (getpoint "\n選擇基點:"))
(setvar "osmode" 0)
(setvar "angbase" 0)
(setq p0zb (getpoint "\n輸入基點坐標(biāo):"))
(setq h (getreal "\n輸入字體高度:"))
(setq h1 (getint "\n輸入經(jīng)緯距離:"))
(while (null p0zb)
	(setq p0zb (getpoint "\n輸入基點坐標(biāo):"))
);;while
(setq p t)
(while p
;;(setvar "osmode" 33)
(setq p (getpoint "\n輸入點:"))
(setvar "osmode" 0)
(if (null p) (setq p nil)
	(progn
	(setq dp (mapcar '- p p0))
	(setq l1 (nth 0 dp) l2 (nth 1 dp) l3 (nth 2 dp))
	(setq l1 (qz l1 h1) l2 (qz l2 h1))
	(setq dp (list l1 l2 l3))
	(setq pd (mapcar '+ p0 dp))
	(setq dp (mapcar '* dp (list bl bl 0)))
	(setq ps (mapcar '+ p0zb dp))
;;;;
	(setq p1 (mapcar '+ pd '(5 0 0)))
	(setq p2 (mapcar '+ pd '(-5 0 0)))
	(setq p3 (mapcar '+ pd '(0 5 0)))
	(setq p4 (mapcar '+ pd '(0 -5 0)))
	(command "color" 7)
	(command "line" p1 p2 "")
	(command "line" p3 p4 "")
	(setq s1 (rtos (nth 0 ps) 2 0))
	(setq s2 (rtos (nth 1 ps) 2 0))
	;(setq t (getstring "n\需要標(biāo)注經(jīng)緯距嗎y/n"))
	;(setq t (strcase t))
	;(if (/= t "N") (progn
	(command "color" 7)
	(command "text" "bl" pd h 270 (strcat "E" s1))
	(command "text" "br" pd h 0   (strcat "N" s2))
	;));;if
	);;progn
);;if
);;while
);;

;;;
;;;
(defun c:cx1 (/ h bl p0 p0zb p dp pd ps l1 l2 l3 p1 p2 p3 p4 s1 s2)
(command "layer" "m" "經(jīng)緯距"  "")
;(command "style" "xsyst" "宋體" 0 0.75 0 "n" "n" "n")
(command "style" "xsy" "italc1,fs" 0 0.75 0 "n" "n" "n")
(command "linetype" "s" "continuous" "")
;(setq bl (getreal "\n比例:"))
(setq bl 1)
(setq n (* 100 bl))
(setvar "osmode" 33)
(setq p0 (getpoint "\n選擇基點:"))
(setq h1 (getint "\n輸入經(jīng)緯距離:"))
(setvar "osmode" 0)
(setvar "angbase" 0)
(setq p t)
(while p
(setq p (getpoint "\n輸入點:"))
(setvar "osmode" 0)
(if (null p) (setq p nil)
	(progn
	(setq dp (mapcar '- p p0))
	(setq l1 (nth 0 dp) l2 (nth 1 dp) l3 (nth 2 dp))
	(setq l1 (qz l1 h1) l2 (qz l2 h1))
	(setq dp (list l1 l2 l3))
	(setq pd (mapcar '+ p0 dp))
	(setq dp (mapcar '* dp (list bl bl 0)))
	(setq ps (mapcar '+ p0zb dp))
;;;;
	(setq p1 (mapcar '+ pd '(2.5 0 0)))
	(setq p2 (mapcar '+ pd '(-2.5 0 0)))
	(setq p3 (mapcar '+ pd '(0 2.5 0)))
	(setq p4 (mapcar '+ pd '(0 -2.5 0)))
	(command "color" 7)
	(command "line" p1 p2 "")
	(command "line" p3 p4 "")
	);;progn
);;if
);;while
);;

(defun c:cx2 (/ h h1 bl p0 p0zb p dp pd ps l1 l2 l3 p1 p2 p3 p4 s1 s2)
(command "layer" "m" "經(jīng)緯距"  "")
;(command "style" "xsy" "italc1,fs" 0 0.75 0 "n" "n" "n")
(command "linetype" "s" "continuous" "")
(setvar "blipmode" 0)
(setvar "angbase" 0)
;(setq bl (getreal "\n比例:"))
(setq bl 10)
(setq bl (* bl 0.1))
(setq n (* 100 bl))
(setvar "osmode" 0)
(setvar "angbase" 0)
;(setq h (getreal "\n輸入字體高度:"))
;(setq h1 (getint "\n輸入經(jīng)緯距離:"))
(setq h 1.5 h1 50)
(setq p t)
(while p
(setq p (getpoint "\n輸入點:"))
(if (null p) (setq p nil)
	(progn
	(setq l1 (nth 0 p) l2 (nth 1 p) l3 (nth 2 p))
	(setq l1 (qz l1 h1) l2 (qz l2 h1))
	(setq p (list l1 l2 l3))
	(setq p1 (mapcar '+ p '(5 0 0)))
	(setq p2 (mapcar '+ p '(-5 0 0)))
	(setq p3 (mapcar '+ p '(0 5 0)))
	(setq p4 (mapcar '+ p '(0 -5 0)))
	(command "color" 7)
	(command "line" p1 p2 "")
	(command "line" p3 p4 "")
	(setq s1 (rtos (nth 0 p) 2 0))
	(setq s2 (rtos (nth 1 p) 2 0))
	(command "text" "bl" p h 270 (strcat "E" s1))
	(command "text" "br" p h 0   (strcat "N" s2))
	;));;if
	);;progn
);;if
);;while
);;

;;;=============sc================
(defun c:sc (/ p1 p2 st s s1 bl)
(setvar "osmode" 33)
(setq p1 (getpoint "\nfirst point:"))
(setq p2 (getpoint "\nsecond point:"))
(setvar "osmode" 0)
(princ "選擇物體:")
(setq st (ssget))
(setq s (distance p1 p2))
(setq s1 (getreal "\n輸入欲放大到的距離:"))
(setq bl (/ s1 s))
(command "scale" st "" p1 bl)
)
;;;定義坐標(biāo)原點的程序ucso、ucs1、ucs2
(defun c:ucs1 (/ p p0 ps ps1 pls)
(setvar "osmode" 33)
(setq p (getpoint "\n 選擇點:"))
(setvar "osmode" 0)
(setq ps (getreal "\n輸入E(y)坐標(biāo)值:"))
(setq ps1 (getreal "\n輸入N(x)坐標(biāo)值:"))
(setq p0 (list ps ps1 0))
(setq ps (- 0 ps) ps1 (- 0 ps1))
(setq pls (list ps ps1 0))
(command "ucs" "o" p)
(command "ucs" "o" pls)
)
;;;ucs2
(defun c:ucs2 (/ p ps pls)
(setvar "osmode" 33)
(setq p (getpoint "\n 選擇點:"))
(setq ps (entsel "\n 選擇數(shù)值:"))
(setq ps (nth 0 ps))
(setq ps (entget ps))
(setq ps (assoc 1 ps))
(setq ps (cdr ps))
(setq ps (read ps))
(setq ps (- 0 ps))
(setvar "osmode" 0)
(setq pls (list 0 ps 0))
(command "ucs" "o" p)
(command "ucs" "o" pls)
)
;;;;ucso定義選擇點為坐標(biāo)原點
(defun c:ucso (/ p ps pls)
(setvar "osmode" 33)
(setq p (getpoint "\n 選擇點:"))
(setvar "osmode" 0)
(setq pls (list 0 0 0))
(command "ucs" "o" p)
(command "ucs" "o" pls)
)
;;
;;;;;
;;;
;;;==========swdm====================
(defun c:swdm (/ p0 p1 p2)
  (setvar "osmode" 33)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq p0 (getpoint "\n輸入斷面位置:"))
  (setq p1 (mapcar '+ p0 '(0 20 0)))
  (setq p2 (mapcar '+ p1 '(0 2 0)))
  (command "line" p0 p1 "")
  (command "color" 7)
  (setvar "osmode" 0)
  (command "text" "bc" p2 4 0 "水文斷面位置")
  )
;;=======標(biāo)注坡度=============
(defun c:pd (/ s p0 p1 pt p2)
  (setvar "osmode" 0)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq p0 (getpoint "\n輸入起點:"))
  (setq s (getreal "\n輸入坡度:"))
  (setq s (rtos s 2 2))
  (setq p1 (mapcar '+ p0 '(20 0 0)))
  (setq pt (mapcar '+ p0 '(10 1 0)))
  (setq p2 (mapcar '+ p1 '(-5 0.5 0)))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (command "text" "bc" pt 4 0 (strcat s "‰"))
  )
;;
(defun c:pd1 (/ pd1 pd2 jd p s p0 p1 pt p2)
  (setvar "osmode" 512)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq pd1 (getpoint "\n輸入第一點:"))
  (setq pd2 (getpoint "\n輸入第二點:"))
  (setq jd (angle pd1 pd2))
  (setq jd2 (- jd 0.05))
  (setq jd1 (* jd 57.29577951))
  (setvar "osmode" 0)
  (setq p (mapcar '- pd2 pd1))
  (setq s (/ (cadr p) (car p)))
  (setq s (* s 1000))
  (setq s (rtos s 2 2))
  (setq p0 (getpoint "\n輸入起點:"))
  (setq p1 (polar p0 jd 20))
  (setq pt (polar p0 jd 10))
  (setq p2 (polar p0 jd2 12))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (command "text" "bc" pt 4 jd1 (strcat s "‰"))
  )
;;;;;;;;
(defun c:fxy (/ pd1 pd2 jd p s p0 p1 pt p2)
  (setvar "osmode" 512)
  (setvar "angbase" 0)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq pd1 (getpoint "\n輸入第一點:"))
  (setq pd2 (getpoint "\n輸入第二點:"))
  (setq jd (angle pd1 pd2))
  (setq jd2 (- jd 0.05))
  (setq jd1 (* jd 57.29577951))
  (setvar "osmode" 0)
  (setq p0 (getpoint "\n輸入起點:"))
  (setq p1 (polar p0 jd 20))
  (setq pt (polar p0 jd 10))
  (setq p2 (polar p0 jd2 12))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (initget 7 "1 2 3 4")
  (setq dw (getkword "選擇 1-出口 2-入口 3- 井口 4-線路右側(cè):"))
  (cond
    ((= dw "1") (command "text" "bc" pt 5 jd1 "出  口"))
    ((= dw "2") (command "text" "bc" pt 5 jd1 "入  口"))
    ((= dw "3") (command "text" "bc" pt 5 jd1 "井  口"))
    ((= dw "4") (command "text" "bc" pt 5 jd1 "線路右側(cè)"))
    );;cond
  ;(command "text" "bc" pt 4 jd1 dw)
  )
;;
(defun c:fxz (/ pd1 pd2 jd p s p0 p1 pt p2)
  (setvar "osmode" 512)
  (setvar "angbase" 0)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq pd1 (getpoint "\n輸入第一點:"))
  (setq pd2 (getpoint "\n輸入第二點:"))
  (setq jd (angle pd1 pd2))
  (setq jd2 (+ jd 0.05))
  (setq jd1 (* jd 57.29577951))
  (setq jd1 (+ 180 jd1))
  (setvar "osmode" 0)
  (setq p0 (getpoint "\n輸入起點:"))
  (setq p1 (polar p0 jd 20))
  (setq pt (polar p0 jd 10))
  (setq p2 (polar p0 jd2 12))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (initget 7 "1 2 3 4")
  (setq dw (getkword "選擇 1-出口 2-入口 3- 重慶 4-線路左側(cè):"))
  (cond
    ((= dw "1") (command "text" "bc" pt 5 jd1 "出  口"))
    ((= dw "2") (command "text" "bc" pt 5 jd1 "入  口"))
    ((= dw "3") (command "text" "bc" pt 5 jd1 "重慶"))
    ((= dw "4") (command "text" "bc" pt 5 jd1 "線路左側(cè)"))
    );;cond
  ;(command "text" "bc" pt 4 jd1 dw)
  )

(defun c:tz (/ p0 p1 pt p2)
  (setvar "osmode" 0)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq p0 (getpoint "\n輸入起點:"))
  (setq p1 (mapcar '+ p0 '(-20 0 0)))
  (setq pt (mapcar '+ p0 '(-10 1 0)))
  (setq p2 (mapcar '+ p1 '(8 -1 0)))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (initget 7 "1 2 3 4")
  (setq dw (getkword "選擇文字方向 1-出口 2-入口 3-遂寧 4-重慶:"))
  (cond
    ((= dw "1") (command "text" "bc" pt 5 0 "出  口"))
    ((= dw "2") (command "text" "bc" pt 5 0 "入  口"))
    ((= dw "3") (command "text" "bc" pt 5 0 "遂寧"))
    ((= dw "4") (command "text" "bc" pt 5 0 "重慶"))
    );;cond
  
  );;
;;
(defun c:ty (/ p0 p1 pt p2)
  (setvar "osmode" 0)
  (command "color" 4)
  (command "linetype" "s" "continuous" "")
  (setq p0 (getpoint "\n輸入起點:"))
  (setq p1 (mapcar '+ p0 '(20 0 0)))
  (setq pt (mapcar '+ p0 '(10 1 0)))
  (setq p2 (mapcar '+ p1 '(-8 -1 0)))
  (command "pline" p0 p1 p2 "")
  (command "color" 7)
  (initget 7 "1 2 3 4")
  (setq dw (getkword "選擇文字方向 1-出口 2-入口 3- 井口 4-線路右側(cè):"))
  (cond
    ((= dw "1") (command "text" "bc" pt 5 0 "出  口"))
    ((= dw "2") (command "text" "bc" pt 5 0 "入  口"))
    ((= dw "3") (command "text" "bc" pt 5 0 "井  口"))
    ((= dw "4") (command "text" "bc" pt 5 0 "線路右側(cè)"))
    );;cond
  
  )
;;
;;
;;
;;
;;

;;;;============xx==============
(defun c:xx ()
  (setvar "osmode" 35)
  (setvar "blipmode" 0)
  (setvar "angbase" 0)
  (setvar "angdir" 0)
  (command "style" "xsy" "italc1,fs" 0 0.75 0 "n" "n" "n")
  )
;;------------圖框程
(defun tk1 (p0 / p0x p0y pw0 pw1 pn0 pn1 t1 tx ty pd )
  (setvar "ltscale" 1)
  ;(setq p0 '(0 0))
  (setq pw0 (mapcar '+ p0 '(-25 -10)))
  (setq pw1 (mapcar '+ p0 '(760 287)))
  (command "layer" "m" "tk"  "")
  (command "linetype" "s" "continuous" "")
  (COMMAND "COLOR" 7)
  (command "rectang" pw0 pw1);外圖
  (setq pn1 (mapcar '+ p0 '(750 277)))
  (COMMAND "COLOR" 2)
  (command "rectang" p0 pn1);內(nèi)圖
  (command "color" 9)
  (command "linetype" "s" "dot" "")
  ;;;;;;;;;;;;;
  (setq p0y (nth 1 p0))
  (setq t1 (+ p0y 10))
  ;;水平線細(xì)線begin
  (setq p0x (nth 0 p0))
  (repeat 4
    (setq tx (list p0x t1) ty (list  (+ p0x 670) t1))
    (command "line" tx ty "")
    (setq t1 (+ t1 10))
    );;最下層水平細(xì)
  (setq t1 (+ t1 10))
  (repeat 4
    (repeat 4
      (setq tx (list p0x t1) ty (list  (+ p0x 750) t1))
      (command "line" tx ty "")
      (setq t1 (+ t1 10))
      )
    (setq t1 (+ t1 10))
    )
  (repeat 2
    (setq tx (list p0x t1) ty (list  (+ p0x 750) t1))
    (command "line" tx ty "")
    (setq t1 (+ t1 10))
    )
  ;;;;水平線細(xì)線end
  ;;;
  (command "linetype" "s" "dot2" "")
  (setq  t1 (+ p0y 50))
  (command "color" 93)
  (repeat 5
    (setq tx (list p0x t1) ty (list (+ p0x 750) t1))
    (command "line" tx ty "")
    (setq t1 (+ t1 50))
    )
  ;;;;;;;水平粗線end
  ;;;;begin 豎
  (setq t1 (+ p0x 50))
  (setq n 13)
  (repeat n
    (setq tx (list t1 p0y) ty (list t1(+ p0y 277)))
    (command "line" tx ty "")
    (setq t1 (+ t1 50))
    )
  (setq tx (list t1 (+ p0y 40)) ty (list t1(+ p0y 277)))
  (command "line" tx ty "");;粗
  (command "linetype" "s" "dot" "")
  (setq t1 (+ p0x 10))
  (command "color" 9)
  (command)
  (repeat n
    (repeat 4
      (setq tx (list t1 p0y) ty (list t1(+ p0y 277)))
      (command "line" tx ty "")
      (setq t1 (+ t1 10))
      )
    (setq t1 (+ 10 t1))
    )
  (setq tx (list t1 p0y) ty (list t1(+ p0y 277)))
  (command "line" tx ty "")
  (repeat 2
    (repeat 4
      (setq tx (list t1 (+ p0y 40)) ty (list t1(+ p0y 277)))
      (command "line" tx ty "")
      (setq t1 (+ t1 10))
      )
    (setq t1 (+ 10 t1))
    )
  (command "color" 7)
  (setq pd (mapcar '+ p0 '(750 0)))
  (command "insert" "d:\\xsy\\tb" pd "" "" "")
  (command "layer" "m" "0" "")
  (command "linetype" "s" "continuous" "")
  ;(setq p0x nil p0y nil pw0 nil pw1 nil  pn0 nil  pn1 nil  t1 nil)
  ;(setq tx nil  ty nil pc nil)
  )
;;;end of file
;;;-----------------------------
;;;;-----------------------------
;;;程序1(pc)
(defun pc (p0 / n m i s1 p01)
  (setq n (strlen p0) m 1 i 1 pl ())
  (while (< i n)
    (setq s1 (substr p0 i 1))
    (if (or (= s1 " ") (= s1 ","))
      (progn
	(setq p01 (substR P0 m (- i m)))
	(setq p01 (read p01))
	(if p01 (setq pl (cons p01 pl)))
	(setq m (+ i 1))
	);;progn
      );;if
    (setq i (+ i 1))
    );;;while
  (setq p01 (substR P0 m))
  (setq p01 (read p01))
  (if p01 (setq pl (cons p01 pl)))
  (setq pl (reverse pl))
  );;;end--------------------------------------

;;;程序2(pcc)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品每日更新在线播放网址| 欧美日韩一区二区电影| 国产欧美综合在线观看第十页 | 日韩一区二区精品在线观看| 亚洲成精国产精品女| 欧美一二三四在线| 精品一区二区三区欧美| 日本一区二区在线不卡| 91麻豆国产精品久久| 调教+趴+乳夹+国产+精品| 日韩精品一区在线| 国产精品1区2区| 伊人一区二区三区| 制服丝袜日韩国产| 国产999精品久久久久久绿帽| 亚洲欧洲日韩综合一区二区| 欧美性videosxxxxx| 精品综合久久久久久8888| 中文一区二区完整视频在线观看| 欧美在线播放高清精品| 美女国产一区二区三区| 亚洲色图欧美偷拍| 欧美一区二区视频免费观看| 懂色av一区二区在线播放| 一区二区三区四区视频精品免费 | 久久只精品国产| 99国产精品久| 日本女优在线视频一区二区| 日本一区二区免费在线| 欧美伦理视频网站| 成人h动漫精品一区二区| 丝袜国产日韩另类美女| 中文字幕一区免费在线观看| 欧美一区二区精品| 一本久久综合亚洲鲁鲁五月天| 久久精品国产久精国产| 一区二区三区四区乱视频| 久久美女艺术照精彩视频福利播放| 在线免费观看不卡av| 国产精品一级片| 三级不卡在线观看| 亚洲欧美激情小说另类| 国产日韩欧美在线一区| 91精品国产综合久久久久久久久久| 不卡在线观看av| 久久99这里只有精品| 午夜一区二区三区视频| 亚洲天堂2014| 亚洲国产高清aⅴ视频| 欧美一二三区在线观看| 在线日韩一区二区| 99精品国产视频| 国产麻豆精品theporn| 日本成人中文字幕| 一区二区三区在线观看国产| 日韩一区在线看| 国产精品热久久久久夜色精品三区| 欧美mv和日韩mv的网站| 在线91免费看| 欧美日韩dvd在线观看| 色域天天综合网| 99久久精品免费| 成人精品免费视频| 丁香六月综合激情| 久久精品国产久精国产爱| 青青青爽久久午夜综合久久午夜| 亚洲午夜免费电影| 亚洲综合在线第一页| 一区二区三区四区在线免费观看 | 日韩三级视频在线看| 欧美片网站yy| 国产日韩欧美在线一区| 国产日韩三级在线| 国产精品情趣视频| 国产精品成人一区二区艾草| 国产精品视频观看| 亚洲人成在线观看一区二区| 国产精品二区一区二区aⅴ污介绍| 国产农村妇女毛片精品久久麻豆 | 成人一区在线看| 国产成人亚洲综合a∨婷婷| 国产乱子伦一区二区三区国色天香 | 欧美日韩中文国产| 色综合网色综合| 91成人网在线| 99re热视频这里只精品| 91美女精品福利| 欧美色综合天天久久综合精品| 欧美日本免费一区二区三区| 欧美精品乱码久久久久久| 欧美一区二区三区电影| 精品捆绑美女sm三区| 国产欧美日产一区| 亚洲欧美在线视频观看| 亚洲高清视频在线| 视频一区欧美精品| 国产美女视频一区| 91一区二区三区在线观看| 欧美三区免费完整视频在线观看| 欧美片在线播放| 国产日韩欧美一区二区三区综合| 亚洲三级在线免费| 天堂久久一区二区三区| 国产精品2024| 精品视频在线视频| 精品国产不卡一区二区三区| 国产精品久久久99| 亚洲成av人片在www色猫咪| 韩国女主播成人在线| 99精品欧美一区二区三区小说 | 久久精品国产久精国产| 成人一区二区三区视频在线观看 | 欧美精品色一区二区三区| 精品剧情v国产在线观看在线| 欧美韩日一区二区三区| 一区二区免费看| 黑人巨大精品欧美一区| 91小视频免费看| 欧美mv和日韩mv国产网站| 亚洲欧美日韩国产成人精品影院| 麻豆国产91在线播放| 色综合一个色综合| 久久久噜噜噜久久人人看 | 亚洲三级久久久| 麻豆国产精品一区二区三区| 91在线精品一区二区三区| 欧美一级精品在线| 亚洲青青青在线视频| 国模一区二区三区白浆| 欧美日韩一区二区在线观看视频 | 成人黄色免费短视频| 欧美一区二区三区免费在线看| 国产精品国模大尺度视频| 日韩二区三区在线观看| 一本色道久久综合亚洲精品按摩| 久久精品视频免费观看| 丝袜亚洲另类丝袜在线| 日本乱人伦一区| 国产色综合一区| 久久99久久99精品免视看婷婷 | aaa亚洲精品| 国产亚洲美州欧州综合国| 麻豆国产一区二区| 欧美日韩国产在线播放网站| 亚洲欧洲中文日韩久久av乱码| 国产精品亚洲第一| 日韩一级片网站| 日本欧美肥老太交大片| 欧美日韩国产乱码电影| 亚洲男人天堂一区| 97久久久精品综合88久久| 国产欧美精品国产国产专区| 久久国产人妖系列| 日韩精品专区在线影院观看| 日本中文一区二区三区| 91精品国产综合久久香蕉的特点| 亚洲国产日韩一区二区| 欧美日韩在线播放一区| 亚洲午夜免费电影| 在线看国产一区二区| 亚洲女与黑人做爰| 91在线精品一区二区| 亚洲欧美二区三区| 日本久久一区二区三区| 亚洲精品日韩综合观看成人91| 色综合一区二区| 一区二区三区精品视频在线| 欧美色精品在线视频| 亚洲成人av一区二区三区| 欧美日韩国产不卡| 日韩黄色在线观看| 91精品国产欧美日韩| 人人狠狠综合久久亚洲| 日韩欧美高清一区| 国内精品久久久久影院一蜜桃| 国产亚洲精品中文字幕| 成人黄色一级视频| 一区二区三区色| 欧美日韩另类国产亚洲欧美一级| 天天综合日日夜夜精品| 欧美一区二区三区成人| 青青草97国产精品免费观看 | 国产精品美女久久久久久| 波多野结衣在线一区| 国产精品伦一区二区三级视频| av一区二区三区| 亚洲影院久久精品| 日韩欧美国产综合| 国产福利一区二区三区视频 | 国产视频在线观看一区二区三区| 成人av电影免费在线播放| 亚洲激情成人在线| 91精品国产综合久久香蕉的特点 | 日韩一区二区在线观看| 国产精品一线二线三线精华| 亚洲色图在线视频| 欧美一级黄色大片| 99久久免费视频.com| 日韩av在线免费观看不卡| 欧美激情在线免费观看|