/* * tesswind.c * This program demonstrates the winding rule polygon * tessellation property. Four tessellated objects are drawn, * each with very different contours. When the w key is pressed, * the objects are drawn with a different winding rule. */
標簽: demonstrates tessellation tesswind program
上傳時間: 2013-12-10
上傳用戶:星仔
This file contains all possible questions that the exam 2 could contain (SSD2 consideration), as well as exercises that may require the practical examination, I hope they help, luck!
標簽: consideration questions contains possible
上傳時間: 2013-12-25
上傳用戶:himbly
NetGUI v0.4.1 INSTALL Instructions Pedro de las Heras Quiros pheras@gmail.com 1. Install netkit (www.netkit.org) 2. Compile src/*java 3. mv src/*class bin 4. Edit and adapt bin/netgui.sh 5. Run bin/netgui.sh
標簽: Instructions INSTALL NetGUI Pedro
上傳時間: 2013-12-20
上傳用戶:蟲蟲蟲蟲蟲蟲
for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix H = entropy([X Y Z]) this command will find the joint entropy for the 3 variables H = entropy([X,Y],[Z,W]) this will find H(X,Y/Z,W).. you can use it for any combination of joint entropies Please validate this function before using it
標簽: entropy evaluate command matrix
上傳時間: 2017-09-10
上傳用戶:caozhizhi
This is a comparison foundation construction of data example code, the function is quite complete, was myself debugs the successful procedure, might again on Visual c++ the direct movement
標簽: construction comparison foundation complete
上傳時間: 2013-12-30
上傳用戶:cxl274287265
樂透選號小程式,分為人工選號以及電腦選號,可自選所要的組數,並加入氣泡排序以及不重複出現的功能,最後可得到所中的號碼,有需要作相關的人可以下載並照自已的需求修改
標簽: 程式
上傳時間: 2013-12-23
上傳用戶:z754970244
swt帶dnd應用的網址收藏夾源碼,使用xml語言作為數據技久支持,對網址進行分類,收藏,技持拖放技術---全是自己寫的源碼
上傳時間: 2017-09-26
上傳用戶:杜瑩12345
1. 心理學家( )于1879年在德國的萊比錫大學建立了世界上第一個心理實驗室,從而使心理學成 為了一門獨立的科學。 A 艾賓浩斯(Ebbinghaus)B 繆勒(G.E.Muller)C 費希納(Fechner) D 馮特(W.Wundt) 2. 研究人的心理活動的一般規律的科學是指( )。 A 工程心理學 B 普通心理學 C 工程心理學 D 社會心理學
標簽: 職業教育心理學
上傳時間: 2015-03-10
上傳用戶:FUCSAD
文件中規劃進行多系統的整合應用,包含了~~~ 微型雷達偵測系統 熱感紅外線攝影機 可見光紅外線攝影機 無線網路傳輸應用 後端警報管理平臺
上傳時間: 2015-03-18
上傳用戶:戴斗笠的神秘人
DATAS SEGMENT w dw 0 keybuf db 255 db 0 db 255 dup(0) ;定義鍵盤輸入需要的緩沖區 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf ;用0a號功能,輸入一個字符串 mov ah,0ah ;用回車結束 int 21h mov dl,0ah ;再進行換行,以便在下一行顯示轉換后的字符串 mov ah,2 int 21h ; push ax ; push dx ; mov dl,cl ; mov ah,02 ; int 21h ; pop dx ; pop ax mov bx,offset keybuf+1 ;取出字符串的字符個數,作為循環的次數 mov cl,[bx] mov ch,0 mov ax,0 again: inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx ;是小寫字母,則轉換為大寫字母 mov [w],ax mov dl,[bx] ;取出一個字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1: sub dl,30h add [w],dx loop again mov ax,[w] mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h jmp lab5 ;循環,處理完整個字符串 lab4: MOV AH,4CH INT 21H CODES ENDS END START
標簽: 匯編
上傳時間: 2015-04-02
上傳用戶:wcc0310