搜索资源列表
填充曲面的绘制.rar
- 《计算机图形学》网络学院课程模拟试题.doc
三维真实感图形的绘制.rar
- 科学计算可视化,计算机动画和虚拟现实是现在计算机图形学的三个热点。而这三个热点的核心都是三维真实感图形的绘制。由于OpenGL(Open GraphicsLibrary)具有跨平台性、简便、高效、功能完善,目前已经成为了三维图形制作方法中事实上的工业标准。自从WindowsNT3.51在微机平台上支持OpenGL以后,现在微软公司在Windows95OSR2、WindowsNT4.0中连续性的提供OpenGL开发环境。VisualC++从4.2 版本以后已经完全支持OpenGL API,使三维世
CDrawLine.zip
- 绘制图形的CGraph类,可以绘制各种图形如走势线、直方图、饼图
利用MSChart控件绘制图形
- MSChart控件用于绘制各种图表,去持真正的三维绘图方式,支持所有主要的图表类型,数据点可以用条形图,折线图,填充区域图或饼形式显示。-Upstream control for drawing charts to hold the real 3D graphics, support for all major types of graphs, data points can be used bar charts, Plotting, filling regional map or cake f
三维真实感图形的绘制
- 三维真实感图形的绘制,使用VC固化的头文件-realistic 3D graphics rendering, use VC curing the first document
绘制NURBS曲面
- 关于图形学大作业的绘制NURBS曲面-major operations on the graphics rendering NURBS
绘制图形
- 图形绘制的简单程序-graphics rendering the simple procedure
2D图形变换
- 通过C++实现简单的2D图形绘制 并且能够让图像以一定的规律变换 比如旋转啊
VisualC++ImagePrograming.rar
- 可以绘制图形,对图像进行编辑,对图像进行边缘检测、中值滤波,去噪等。,mapped graphics, image editing, image of edge detection, filtering, such as denoising.
CDrawLine.zip
- 绘制图形的CGraph类,可以绘制各种图形如走势线、直方图、饼图, The plan graph CGraph kind, may draw up each kind of graph like trend line, the histogram, the cake chart
drwExample
- 实现了鼠标交互的所有功能,包含对绘制的图形通过鼠标滚轮进行无极缩放以及任意拖动.-Mouse interaction achieved all the features included on the map graphics through mouse wheel to zoom Promise and arbitrary drag.
tuxingxue
- c++做的图形学的内容。。鼠标拖动画直线,鼠标画举行。填充。。。所有图形学的基本功能的实现。对了。还有许多个交互式绘制曲线的功能。。。适用于初级的c++学习-c++ to do graphics content. . Drag your mouse animated straight, hold the mouse painting. Filled. . . All the basic functions of graphics implementation. Right. There are
flot-0.6
- 可通过html页面的表格自动绘制图形报表。有饼图、柱状图等-Html page form can be automatically drawn graphical reporting. There is a pie chart, histogram and so on. .
my
- c#语言 Devexpress设计的界面。 基于ArcEngine的基础设计 包括:打开、保存、另存地图文档, 地图的放大、缩小、平移等, 图层的移动、删除、显示属性表等, 绘制图形:画线、画面、画圆、画矩形等, 空间数据的导入等。-c# language Devexpress design interface. ArcEngine based on the design include: Open, Save, Save the map document, ma
两种圆弧绘制
- 使用两种不同的方法绘制圆弧曲线,自己构思绘制图形(Two different methods are used to draw arc curves)
DDA绘制图形
- 读取TXT文件用DDA算法绘制图形,TXT文件每行为两个坐标点
利用de Boor算法绘制B样条曲线
- 运用计算机图形学的知识,采用4阶B样条基函数,节点向量取为[0,0,0,0,1/4,2/4,3/4,1,1,1,1] 先绘制控制多边形,再用分段直线段绘制B样条曲线(Using the knowledge of computer graphics, the 4 order B spline basis function is used, and the node vector is taken as [0,0,0,0,1/4,2/4,3/4,1,1,1,1]. First, draw
计算机图形学园和椭圆的绘制
- 编写应用程序,利用鼠标在视图区内绘制圆和椭圆。要求在工具 条上创建两个按钮,分别代表绘制圆和绘制椭圆。实现代码中仅允许 使用 SetPixel 一种绘图函数,不可以使用其他绘图函数。 绘制图形的鼠标操作方式可自行决定,此处给出一种方式作为参 考:类似于绘制直线段,按下鼠标左键时的点假设为 P,按住鼠标左 键不放,移动鼠标到另一点处抬起鼠标左键,该点假设为 Q。绘制圆 的时候,以 P 为圆心,PQ 为圆的半径。绘制椭圆时,将 PQ 作为一个 矩形的对角线,绘制该矩形的内切椭圆。