搜索资源列表
Computer-Graphic
- 此代码实现简单的计算机图形学的要求,包括图形的绘制,填充,坐标变换等功能-this code simple computer graphics requirements, including graphics rendering, filling, coordinate transformation functions
jinggangshijietu
- 计算机图形学的作业,用VC++编写的金刚石截取的代码,可以改变边数还有原图对比-computer graphics operations, with VC + + prepared by the interception of the diamond code edge can also change the maximum contrast
graphics
- 学习《计算机图形学》时做的课程设计,主要功能有绘制直线、圆、曲线等。由于当时初学VC,代码比较粗糙,请多包涵。
计算机图形学综合大程序
- 关于图形学用VC++的基本代码.改程序包括了几乎所有的计算机图形学基础算法-graphics with VC on the basic code. Changed procedures include almost all of the computer graphics based algorithm!
T_PAOWU2
- 计算机图形学 曲线生成算法 抛物线 很好的代码-Computer Graphics parabolic curve good code generation algorithm
T_BYANGT
- 计算机图形学 曲线生成 B样条曲线 很好的代码-Computer Graphics curves generated B-spline curve very good code
fanzouyang
- 计算机图形学基本练习之一,反走样练习,包含程序代码-Computer Graphics, one of the basic exercises, anti-aliasing practice, including program code
huizhizhixianyuan
- 计算机图形学中最简单的直线与圆的绘制,包含程序代码-Computer graphics in simple line drawing with the round, including program code
1
- 计算机图形学试验程序,实现二维图形变换的主要代码。VC++编程的程序,适合图形学初学者使用。-Computer graphics test program to realize the main two-dimensional graphics transformation code. VC++ programming procedures, suitable for beginners to use graphics.
graphic_demo
- 计算机图形学编程演示,各个算法演示,详细代码-Computer graphics programming demo, demo of each algorithm, details of the code
Computer-graphics-area-fille
- 计算机图形学实区填充实验代码,包括实验报告-Computer graphics area filled with real experimental code, including test reports
DDA
- 该代码是用DDA画线的方法实现的,方便大家学习计算机图形图像学,适合初学者-The code is to use the DDA crossed the method, to facilitate them to learn computer graphics school for beginners
1
- 计算机图形学作业,一个用C++语言编写的会行走的机器人代码-Computer graphics operations, the preparation of its one with C++ language walking robot code
7.6
- 计算机图形学球与球的代码 小球的碰撞模拟,计算机图形学简单应用-Computer graphics ball ball ball collision simulation code, a simple application of computer graphics
Computer-graphics-tutorial-OpenGL
- 计算机图形学实验教程OpenGL版 有PDF和代码-Computer graphics tutorial OpenGL version of the PDF and code
COMPUTER--GRAPHrar
- 计算机图形 画线 画圆 基础入门代码。建工程之后导入,修改包名类名即可运行。-Computer graphics drawing a line circle
Fan-shaped
- 扇形几何造型在计算机图形学学习过程 这是一个很好 很适合初学者看的一份代码 代码还可以运用到其他程序中来实现不同的效果-Fan-shaped geometry
Scan-Line-Seed-Fill-Algorithm
- 计算机图形学多边形填充算法,扫描线种子填充的伪代码-Computer graphics polygon fill algorithm, scan line seed fill pseudo code
CtoT
- 计算机图形学 2D图像变形 较为简单的变形代码 运行时输入起始图和结果图,运行后生成中间步骤变化图。 -Computer Graphics 2D image warping deformation enter the code relatively simple operation and results shown in Fig start generating an intermediate step change in the diagram.
计算机图形学园和椭圆的绘制
- 编写应用程序,利用鼠标在视图区内绘制圆和椭圆。要求在工具 条上创建两个按钮,分别代表绘制圆和绘制椭圆。实现代码中仅允许 使用 SetPixel 一种绘图函数,不可以使用其他绘图函数。 绘制图形的鼠标操作方式可自行决定,此处给出一种方式作为参 考:类似于绘制直线段,按下鼠标左键时的点假设为 P,按住鼠标左 键不放,移动鼠标到另一点处抬起鼠标左键,该点假设为 Q。绘制圆 的时候,以 P 为圆心,PQ 为圆的半径。绘制椭圆时,将 PQ 作为一个 矩形的对角线,绘制该矩形的内切椭圆。