实例介绍
计算机图形学实践教程 (Visual C++版) (第二版),孔令德著,60个案例源码。
【实例截图】
【核心代码】
82500a82-e2b9-4593-8313-182d3dd764f9
├── 案例10-扫描线种子填充算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── bitmap.bmp
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StackNode.cpp
│ ├── StackNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例11-二维图形几何变换算法
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── down.ico
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── left.ico
│ │ ├── reset.ico
│ │ ├── right.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ ├── Toolbar.bmp
│ │ └── up.ico
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ └── Transform.h
├── 案例12-Cohen-Sutherland直线段裁剪
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── SCISSORS.ICO
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例13-直线段中点分割算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例14-Liang-Barsky直线段裁剪算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例15-多边形裁剪算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── SCISSORS.ICO
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StackNode.cpp
│ ├── StackNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例16-三维图形几何变换算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── AR_DOWN.ICO
│ │ ├── AR_LEFT.ICO
│ │ ├── AR_LFDWN.ICO
│ │ ├── AR_RGTUP.ICO
│ │ ├── AR_RIGHT.ICO
│ │ ├── AR_UP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── minus.ICO
│ │ ├── plus.ico
│ │ ├── reset.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ └── Transform.h
├── 案例17-正交投影算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ └── Transform.h
├── 案例18-三视图算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── HView.cpp
│ ├── HView.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── VView.cpp
│ ├── VView.h
│ ├── WView.cpp
│ └── WView.h
├── 案例19-透视投影算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── 1.ico
│ │ ├── 2.ico
│ │ ├── 3.ico
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例1-金刚石图案算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例20-Bezier曲线算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── DRAW.ICO
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例21-de Casteljau算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── DRAW.ICO
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例22-双三次Bezier曲面-网格
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Matrix.cpp
│ ├── Matrix.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── DRAW.ICO
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例23-三次B样条曲线
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例24-双三次B样条曲面-网格
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Matrix.cpp
│ ├── Matrix.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── DRAW.ICO
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例25-Cantor集算法
│ ├── Inputdlg.cpp
│ ├── Inputdlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例26-Koch曲线算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── Aniscree.ico
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例27-Peano-Hilbert曲线算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例28-Sierpinski垫片算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例29-Sierpinski地毯算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例2-直线中点Bresenham算法
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例30-Menger海绵算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例31-C字曲线算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例32-Cayley树算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例33-Koch曲线L系统模型算法
│ ├── inputdlg.cpp
│ ├── inputdlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── Aniscree.ico
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StateNode.cpp
│ ├── StateNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例34-分形草L系统模型算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StateNode.cpp
│ ├── StateNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例35-Peano-HilbertL系统模型算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StateNode.cpp
│ ├── StateNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例36-分形灌木丛L系统模型算法
│ ├── InputDlg.cpp
│ ├── InputDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StateNode.cpp
│ ├── StateNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例37-Koch曲线的IFS算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例38-正二十面体动态隐线算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── bitmap3.bmp
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例39-地理划分球面动态隐线算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例3-圆中点Bresenham算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例40-正二十面体递归划分线框球
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例41-圆柱面动态隐线算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例42-圆锥面动态隐线算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例43-圆环面动态隐线算法
│ ├── Face.cpp
│ ├── Face.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例44-Z-Buffer算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例45-画家算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Fill.cpp
│ ├── Fill.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ └── Transform.h
├── 案例46-原色系统算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例47-颜色渐变立方体线框模型算法
│ ├── CLine.cpp
│ ├── CLine.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例48-RGB颜色模型算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Fill.cpp
│ ├── Fill.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例49-HSV颜色模型算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Fill.cpp
│ ├── Fill.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ └── Vector.h
├── 案例4-椭圆中点Bresenham算法
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例50-球面光源和材质交互算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── LeftPortion.cpp
│ ├── LeftPortion.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例51-球面Phong明暗处理光照算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例52-简单透明模型算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例53-简单阴影算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例54-立方体表面函数纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例55-长方体图像纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── 1.bmp
│ │ ├── 2.bmp
│ │ ├── 3.bmp
│ │ ├── 4.bmp
│ │ ├── 5.bmp
│ │ ├── 6.bmp
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例56-圆柱面图像纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ ├── texture.bmp
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例57-圆环面图像纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ ├── texture.bmp
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例58-三维纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例59-球面几何纹理映射算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ ├── texture.bmp
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例5-Wu反走样直线算法
│ ├── ALine.cpp
│ ├── ALine.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例60-球面几何纹理反走样算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Face.cpp
│ ├── Face.h
│ ├── Light.cpp
│ ├── Light.h
│ ├── Lighting.cpp
│ ├── Lighting.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Material.cpp
│ ├── Material.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── P3.cpp
│ ├── P3.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── Pi3.cpp
│ ├── Pi3.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── about.bmp
│ │ ├── app.ico
│ │ ├── bumptexture.bmp
│ │ ├── draw.ico
│ │ ├── exit.ico
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ ├── texture.bmp
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── T2.cpp
│ ├── T2.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ ├── TestView.h
│ ├── Transform .cpp
│ ├── Transform.h
│ ├── Vector.cpp
│ ├── Vector.h
│ ├── ZBuffer.cpp
│ └── ZBuffer.h
├── 案例6-多边形有效边表填充算法
│ ├── AET.cpp
│ ├── AET.h
│ ├── Bucket.cpp
│ ├── Bucket.h
│ ├── Fill.cpp
│ ├── Fill.h
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── Pi2.cpp
│ ├── Pi2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例7-多边形边缘填充算法
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.positions
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例8-区域四邻接点填充算法
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StackNode.cpp
│ ├── StackNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
├── 案例9-区域八邻接点填充算法
│ ├── Line.cpp
│ ├── Line.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── P2.cpp
│ ├── P2.h
│ ├── ReadMe.txt
│ ├── RES
│ │ ├── about.bmp
│ │ ├── APP.ICO
│ │ ├── draw.ico
│ │ ├── EXIT.ICO
│ │ ├── Help.ico
│ │ ├── TestDoc.ico
│ │ ├── Test.ico
│ │ ├── Test.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── RGB.cpp
│ ├── RGB.h
│ ├── StackNode.cpp
│ ├── StackNode.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Test.aps
│ ├── Test.clw
│ ├── Test.cpp
│ ├── TestDoc.cpp
│ ├── TestDoc.h
│ ├── Test.dsp
│ ├── Test.dsw
│ ├── Test.h
│ ├── Test.ncb
│ ├── Test.opt
│ ├── Test.rc
│ ├── TestView.cpp
│ └── TestView.h
└── 说明.txt
120 directories, 2435 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论