基于vb的直線插補與圓弧插補實驗_第1頁
基于vb的直線插補與圓弧插補實驗_第2頁
基于vb的直線插補與圓弧插補實驗_第3頁
基于vb的直線插補與圓弧插補實驗_第4頁
基于vb的直線插補與圓弧插補實驗_第5頁
已閱讀5頁,還剩6頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

主界面面板逐點比擬圓弧插補程序如下:PrivateSubCommand1_Click()Xe=Val(Text1.Text)Ye=Val(Text2.Text)Picture1.Scale(-20,20)-(20,-20)Picture1.ClsPicture1.Line(-20,0)-(20,0),vbBluePicture1.Line(19,1)-(20,0),vbbiuePicture1.Line-(19,-1),vbBluePicture1.Print"X"Picture1.Line(0,-20)-(0,20),vbBluePicture1.Line(1,19)-(0,20),vbBluePicture1.Line-(-1,19),vbBluePicture1.Print"Y"Picture1.Line(0,0)-(Xe,Ye),vbBluePicture1.Print"(";Xe;",";Ye;")"IfText1.Text=noneOrText2.Text=noneThenMsgBox"請輸入加工終點坐標值。"Text3.Text=0Text4.Text=0Text5.Text=0EndSubPrivateSubCommand2_Click()DimsumAsIntegerXe=Val(Text1.Text)Ye=Val(Text2.Text)Xm=Val(Text3.Text)Ym=Val(Text4.Text)m=Val(Text5.Text)sum=Xe*Ym-Xm*Ye'第一象限開始IfXe>0AndYe>0Andsum>=0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text3.Text=Xm+1IfXe>0AndYe>0Andsum<0ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text4.Text=Ym+1IfAbs(Xm)+Abs(Ym)>=Abs(Xe)+Abs(Ye)-1ThenMsgBox"加工完畢!"'第二象限開始IfXe<0AndYe>0Andsum>=0ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text4.Text=Ym+1IfXe<0AndYe>0Andsum<0ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text3.Text=Xm-1IfAbs(Xm)+Abs(Ym)>=Abs(Xe)+Abs(Ye)+1ThenMsgBox"加工完畢!"'第三象限開始IfXe<0AndYe<0Andsum>=0ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text3.Text=Xm-1IfXe<0AndYe<0Andsum<0ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Text4.Text=Ym-1IfAbs(Xm)+Abs(Ym)>=Abs(Xe)+Abs(Ye)ThenMsgBox"加工完畢!"'第四象限開始IfXe>0AndYe<0Andsum>=0ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Text4.Text=Ym-1IfXe>0AndYe<0Andsum<0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text3.Text=Xm+1IfAbs(Xm)+Abs(Ym)>=Abs(Xe)+Abs(Ye)ThenMsgBox"加工完畢!"Text5.Text=Abs(Val(Text3.Text))+Abs(Val(Text4.Text))EndSubPrivateSubCommand3_Click()Form2.HideForm1.ShowEndSub數(shù)字積分器法圓弧插補程序如下:PrivateSubCommand1_Click()Xe=Val(Text1.Text)Ye=Val(Text2.Text)Picture1.Scale(-20,20)-(20,-20)Picture1.ClsPicture1.Line(-20,0)-(20,0),vbBluePicture1.Line(19,1)-(20,0),vbbiuePicture1.Line-(19,-1),vbBluePicture1.Print"X"Picture1.Line(0,-20)-(0,20),vbBluePicture1.Line(1,19)-(0,20),vbBluePicture1.Line-(-1,19),vbBluePicture1.Print"Y"Picture1.Line(0,0)-(Xe,Ye),vbBluePicture1.Print"(";Xe;",";Ye;")"Text3.Text=0Text4.Text=0Text5.Text=0Text6.Text=0Text7.Text=0EndSubPrivateSubCommand2_Click()Xe=Val(Text1.Text)Ye=Val(Text2.Text)ax=Val(Text3.Text)ay=Val(Text4.Text)n=Val(Text7.Text)Xm=Val(Text5.Text)Ym=Val(Text6.Text)IfText1.Text=noneOrText2.Text=noneThenMsgBox"請輸入加工終點坐標值。"'終點判斷a=ax+Abs(Xe)Ifa<16ThenText3.Text=aIfa>=16ThenText3.Text=a-16Ifa>=32ThenText3.Text=a-32b=ay+Abs(Ye)Ifb<16ThenText4.Text=bIfb>=16ThenText4.Text=b-16Ifb>=32ThenText4.Text=b-32'第一象限開始IfXe>0AndYe>0Anda>=16Andb<16ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text7.Text=n+1:Text5.Text=Xm+1IfXe>0AndYe>0Anda>=16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym+1),vbRed:Text7.Text=n+2:Text5.Text=Xm+1:Text6.Text=Ym+1IfXe>0AndYe>0Anda<16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text7.Text=n+1:Text6.Text=Ym+1Ifn=Abs(Xe)+Abs(Ye)ThenMsgBox"錯誤:已經(jīng)加工完畢,無法繼續(xù)加工,請點擊復(fù)位!"'第二象限開始IfXe<0AndYe>0Anda>=16Andb<16ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text7.Text=n+1:Text5.Text=Xm-1IfXe<0AndYe>0Anda>=16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym+1),vbRed:Text7.Text=n+2:Text5.Text=Xm-1:Text6.Text=Ym+1IfXe<0AndYe>0Anda<16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text7.Text=n+1:Text6.Text=Ym+1'第三象限開始IfXe<0AndYe<0Anda>=16Andb<16ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text7.Text=n+1:Text5.Text=Xm-1IfXe<0AndYe<0Anda>=16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym-1),vbRed:Text7.Text=n+2:Text5.Text=Xm-1:Text6.Text=Ym-1IfXe<0AndYe<0Anda<16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Text7.Text=n+1:Text6.Text=Ym-1'第四象限開始IfXe>0AndYe<0Anda>=16Andb<16ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text7.Text=n+1:Text5.Text=Xm+1IfXe>0AndYe<0Anda>=16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym-1),vbRed:Text7.Text=n+2:Text5.Text=Xm+1:Text6.Text=Ym-1IfXe>0AndYe<0Anda<16Andb>=16ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Text7.Text=n+1:Text6.Text=Ym-1'結(jié)束Ifn>=Abs(Xe)+Abs(Ye)ThenText7.Text=Abs(Xe)+Abs(Ye)Ifn=Abs(Xe)+Abs(Ye)-1Anda>=16ThenMsgBox"加工完畢!"Ifn=Abs(Xe)+Abs(Ye)-1Andb>=16ThenMsgBox"加工完畢!"Ifn=Abs(Xe)+Abs(Ye)-2Anda>=16Andb>=16ThenMsgBox"加工完畢!"EndSubPrivateSubCommand3_Click()Form3.HideForm1.ShowEndSub逐點比擬圓弧插補程序如下:DimR,a,b,Ym,Xm,Xe,YePrivateSubCommand1_Click()R=Val(Text1.Text)a=Val(Text2.Text)b=Val(Text3.Text)Xe=Val(Text4.Text)Ye=Val(Text5.Text)Xm=Val(Text6.Text)Ym=Val(Text7.Text)Picture1.Scale(-Picture1.ScaleWidth/4,Picture1.ScaleHeight/4)-(Picture1.ScaleWidth/4,-Picture1.ScaleHeight/4)Picture1.ClsPicture1.Line(-20,0)-(20,0),vbBluePicture1.Line(19,1)-(20,0),vbbiuePicture1.Line-(19,-1),vbBluePicture1.Print"X"Picture1.Line(0,-20)-(0,20),vbBluePicture1.Line(1,19)-(0,20),vbBluePicture1.Line-(-1,19),vbBluePicture1.Print"Y"Picture1.Circle(0,0),Text1,vbBlue,Text2,Text3Picture1.Print"(";Xe;",";Ye;")"Text1.Text=""Text2.Text=""Text3.Text=""Text6.Text=""Text7.Text=""EndSubPrivateSubCommand2_Click()DimsumAsSingle,Y,XIfOption1Then'逆圓弧Y=Sqr(R^2-Xm^2)X=Sqr(R^2-Ym^2)IfXm=RAndYm=0Then'一象限Picture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Ym=Ym+1Text7.Text=Ym+1EndIfIfXm>0AndYm>0ThenIfXm>=XThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text6.Text=Xm-1:Xm=Xm-1ElseIfYm<YThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text7.Text=Ym+1:Ym=Ym+1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=0AndYm=RThen'二象限Picture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Xm=Xm-1Text6.Text=Xm-1EndIfIfXm<0AndYm>0ThenIfYm>=YThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1:Text7.Text=Ym-1ElseIfXm>-XThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Xm=Xm-1:Text6.Text=Xm-1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=-RAndYm=0Then'三象限Picture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1Text7.Text=Ym-1EndIfIfXm<0AndYm<0ThenIfYm<-YThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1ElseIfXm>-XThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1:Text7.Text=Ym-1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=0AndYm=-RThen'四象限Picture1.Line(Xm+1,Ym)-(Xm,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1EndIfIfXm>0AndYm<0ThenIfYm<-YThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Ym=Ym+1:Text7.Text=Ym+1ElseIfXm<XThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfEndIfIfOption2Then'順圓弧Y=Sqr(R^2-Xm^2)X=Sqr(R^2-Ym^2)IfXm=0AndYm=RThen'第一象限Picture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1EndIfIfXm>0AndYm>0ThenIfYm>YThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1:Text7.Text=Ym-1ElseIfXm<XThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=-RAndYm=0Then'第二象限Picture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Ym=Ym+1:Text7.Text=Ym+1EndIfIfXm<0AndYm>0ThenIfYm<YThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Ym=Ym+1:Text7.Text=Ym+1ElseIfXm<-XThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Xm=Xm+1:Text6.Text=Xm+1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=0AndYm=-RThen'第三象限Picture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Xm=Xm-1:Text6.Text=Xm-1EndIfIfXm<0AndYm<0ThenIfYm<-YThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Ym=Ym+1:Text7.Text=Ym+1ElseIfXm>-XThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Xm=Xm-1:Text6.Text=Xm-1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=RAndYm=0Then'第四象限Picture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1:Text7.Text=Ym-1EndIfIfXm>0AndYm<0ThenIfXm>XThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Xm=Xm-1:Text6.Text=Xm-1ElseIfYm>-YThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Ym=Ym-1:Text7.Text=Ym-1EndIfEndIfEndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfEndIfEndSubPrivateSubCommand3_Click()Form4.HideForm1.ShowEndSub數(shù)字積分器法圓弧插補程序如下:DimR,a,b,Ym,Xm,Xe,Ye,ax,ay,m,n,s,tPrivateSubCommand1_Click()R=Val(Text1.Text)a=Val(Text2.Text)b=Val(Text3.Text)Xe=Val(Text4.Text)Ye=Val(Text5.Text)Xm=Val(Text6.Text)Ym=Val(Text7.Text)s=Val(Text8.Text)t=Val(Text9.Text)Picture1.Scale(-Picture1.ScaleWidth/4,Picture1.ScaleHeight/4)-(Picture1.ScaleWidth/4,-Picture1.ScaleHeight/4)Picture1.ClsPicture1.Line(-20,0)-(20,0),vbBluePicture1.Line(19,1)-(20,0),vbbiuePicture1.Line-(19,-1),vbBluePicture1.Print"X"Picture1.Line(0,-20)-(0,20),vbBluePicture1.Line(1,19)-(0,20),vbBluePicture1.Line-(-1,19),vbBluePicture1.Print"Y"Picture1.Circle(0,0),Text1,vbBlue,Text2,Text3Picture1.Print"(";Xe;",";Ye;")"EndSubPrivateSubCommand2_Click()IfText4.Text=noneOrText5.Text=noneThenMsgBox"請輸入加工終點坐標"IfOption1Then'逆時針I(yè)fXm=RAndYm=0Then'第一象限Picture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text7.Text=Ym+1:n=1:Ym=Ym+n:t=5EndIfIfXm>0AndYm>0Thens=s+YmIfs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+XmIft<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm>0AndYm>0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text6.Text=Xm-1:Xm=Xm-mIfXm>0AndYm>0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym+1),vbRed:Text6.Text=Xm-1:Xm=Xm-m:Text7.Text=Ym+1:Ym=Ym+nIfXm>0AndYm>0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed::Ym=Ym+n:Text7.Text=Ym+1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=0AndYm=RThen'第二象限Picture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text6.Text=Xm-1:m=1:Xm=Xm-m:s=5EndIfIfXm<0AndYm>0Thens=s+YmIfs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+Abs(Xm)Ift<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm<0AndYm>0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym),vbRed:Text6.Text=Xm-1:Xm=Xm-mIfXm<0AndYm>0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm-1,Ym-1),vbRed:Text6.Text=Xm-1:Xm=Xm-m:Text7.Text=Ym-1:Ym=Ym-nIfXm<0AndYm>0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed::Ym=Ym-n:Text7.Text=Ym-1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=-RAndYm=0Then'第三象限Picture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed:Text7.Text=Ym-1:n=1:Ym=Ym-n:t=5EndIfIfXm<0AndYm<0Thens=s+Abs(Ym)Ifs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+Abs(Xm)Ift<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm<0AndYm<0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:Xm=Xm+mIfXm<0AndYm<0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym-1),vbRed:Text6.Text=Xm+1:Xm=Xm+m:Text7.Text=Ym-1:Ym=Ym-nIfXm<0AndYm<0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed::Ym=Ym-n:Text7.Text=Ym-1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=0AndYm=-RThen'第四象限Picture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:m=1:Xm=Xm+m:s=5EndIfIfXm>0AndYm<0Thens=s+Abs(Ym)Ifs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+XmIft<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm>0AndYm<0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:Xm=Xm+mIfXm>0AndYm<0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym+1),vbRed:Text6.Text=Xm+1:Xm=Xm+m:Text7.Text=Ym+1:Ym=Ym+nIfXm>0AndYm<0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed::Ym=Ym+n:Text7.Text=Ym+1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfEndIfIfOption2Then'順時針I(yè)fXm=0AndYm=RThen'第一象限Picture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:m=1:Xm=Xm+m:s=5EndIfIfXm>0AndYm>0Thens=s+YmIfs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+XmIft<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm>0AndYm>0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:Xm=Xm+mIfXm>0AndYm>0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym-1),vbRed:Text6.Text=Xm+1:Xm=Xm+m:Text7.Text=Ym-1:Ym=Ym-nIfXm>0AndYm>0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym-1),vbRed::Ym=Ym-n:Text7.Text=Ym-1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm=-RAndYm=0Then'第二象限Picture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed:Text7.Text=Ym+1:n=1:Ym=Ym+n:t=5EndIfIfXm<0AndYm>0Thens=s+YmIfs<8ThenText8.Text=s:m=0Ifs>=8ThenText8.Text=s-8:s=s-8:m=1t=t+Abs(Xm)Ift<8ThenText9.Text=t:n=0Ift>=8ThenText9.Text=t-8:t=t-8:n=1IfXm<0AndYm>0Andm=1Andn=0ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym),vbRed:Text6.Text=Xm+1:Xm=Xm+mIfXm<0AndYm>0Andm=1Andn=1ThenPicture1.Line(Xm,Ym)-(Xm+1,Ym+1),vbRed:Text6.Text=Xm+1:Xm=Xm+m:Text7.Text=Ym+1:Ym=Ym+nIfXm<0AndYm>0Andm=0Andn=1ThenPicture1.Line(Xm,Ym)-(Xm,Ym+1),vbRed::Ym=Ym+n:Text7.Text=Ym+1:EndIfIfXm=XeAndYm=YeThenMsgBox"加工完成!"EndIfIfXm

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論