搜索资源列表
SplineTester
- 运用计算机图形学知识绘制B样条曲线。绘制时用鼠标取点,鼠标也可以移动已经绘制好的点。
jt2draw
- 一般的基本图形及基本操作如移动,剪切,拷贝等-general basic graphics and basic operations such as mobile, Cut, Copy, etc.
123
- 计算机图形学 图形移动 计算机图形学 图形移动 -Computer Graphics Graphics Graphics mobile mobile computer graphics
Mario
- 图形学简单程序,用填充像素的方法画一个可以四方向移动,放大缩小的马里奥-This is a simple CG project. It draws a Mario on the screen by filling the frame buffer.
Change
- 图形学算法实现,多边形的变换,包括缩放,移动,旋转等-Graphics algorithms, polygon transformation, including scaling, moving, rotating, etc.
project-Win32BITblt
- 包含填充图形,位图加载,缩放,小球移动等实例,与大家分享-Filled with graphics, bitmap loading, scaling, moving the ball as examples to share with you
shiyanzuozishahu
- 大学里做的一个图形学实验,很简单的实现了移动效果.-University to do a graphics test, a very simple
pick-opengl
- 利用opengl画一个二维的猫脸,可以根据鼠标点击选中部分进行移动,是图形拾取的典型例子。-Opengl draw a two-dimensional cat face, can be moved according to the mouse click on the selected part, is a typical example of graphical picking.
Transform_16
- 实现基本图形变换和绘制 1、学会在VC视图类中加入成员变量和成员函数 2、添加有关的变量,输入相关算法,弄清函数的输入参数和输出参数; 3、通过鼠标响应消息,实现移动、放大、缩小、旋转;-Basic drawing a graphics transformation and learn to add member variables and member functions in VC view class 2, add the relevant variables, enter
image2.1
- 用链表实现的小CAD编程,图形界面,支持直线、矩形、椭圆、文字,放缩,鼠标移动,键盘移动,删除等-With the list of small CAD programming, graphics interface, support for a straight line, rectangle, oval, text, zoom, mouse movement, keyboard mobile, delete, etc..
计算机图形学园和椭圆的绘制
- 编写应用程序,利用鼠标在视图区内绘制圆和椭圆。要求在工具 条上创建两个按钮,分别代表绘制圆和绘制椭圆。实现代码中仅允许 使用 SetPixel 一种绘图函数,不可以使用其他绘图函数。 绘制图形的鼠标操作方式可自行决定,此处给出一种方式作为参 考:类似于绘制直线段,按下鼠标左键时的点假设为 P,按住鼠标左 键不放,移动鼠标到另一点处抬起鼠标左键,该点假设为 Q。绘制圆 的时候,以 P 为圆心,PQ 为圆的半径。绘制椭圆时,将 PQ 作为一个 矩形的对角线,绘制该矩形的内切椭圆。