CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - DDA

搜索资源列表

  1. jsjtx

    0下载:
  2. DDA算法的程序实现计算机图形学实验报告 改进的bresenham画线算法的程序实现 字符点阵显示算法的程序实现 梁友栋-barske算法的程序实现-DDA algorithm computer graphics program to improve the experimental report bresenham line drawing algorithm the program character dot-matrix display algorithm Program
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:23539
    • 提供者:林明清
  1. CG_Line

    0下载:
  2. 计算机图形学的简单设计,包括dda算法,brem算法和矩形,圆的绘制-simple computer graphics design, including dda algorithm, Brem algorithm and rectangular, circular mapping
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:16635
    • 提供者:burnett
  1. Chinapiecedlinealgorithms

    0下载:
  2. 此程序为中点画线算法.注意的是,本算法只能适合于直线的斜率0<k<1的情况,对于其它的情况并不适应。但是,对于其它的情况可以仿照本算法写出对应的算法,也可以用其它算法来实现,如可以用DDA算法,这里不再介绍。-for this procedure were dotted line algorithm. Note that this algorithm can only fit in a linear slope 0
  3. 所属分类:GDI/图象编程

    • 发布日期:2008-10-13
    • 文件大小:15096
    • 提供者:管声俊
  1. gat_shiyan3

    1下载:
  2. 这是我的计算机图形学的大作业,其中包括的算法有: 直线绘制的DDA算法,中点算法,绘制抛物线的正负法,中点法。 扫描转换多边形扫描线算法,种子填充算法。 线段裁剪(CohenSutherland)编码算法,多边形逐边裁剪(SutherlandHodgman)算法 注:分别设计了功能完整的类-This is my big computer graphics operations, including the algorithm are : DDA linear mapping al
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:60256
    • 提供者:
  1. DDA

    0下载:
  2. 直线的数字微分算法-Algorithm for digital differential of straight line.
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:26979
    • 提供者:尹章才
  1. myline

    0下载:
  2. c语言实现DDA画线法。有详细注释!-DDA painting method. Detailed Notes!
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:1277
    • 提供者:杨永健
  1. chabu

    2下载:
  2. 数控插补程序,直线插补和圆弧插补,1.直线插补:逐点比较法插补;2. 圆弧插补:DDA法插补第一、二象限的逆圆弧。 -NC interpolation procedures, linear interpolation and circular interpolation, 1. Linear interpolation : a case-by-point comparison interpolation; 2. Circular interpolation : DDA interpolati
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:63062
    • 提供者:chen
  1. DDA_xianduanheyuan

    0下载:
  2. 你是不是很想要DDA画线段和圆的源代码呢?!哈哈,我这里可是好东西来的-not you wanted a painting line and the DDA round of the source code? ! Ha ha, but I am here to the good things
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:17273
    • 提供者:林桂川
  1. DDArenderingAlg

    0下载:
  2. 画线DDA算法,可以绘制直线,并对直线的精度进行调整。-line drawing algorithm, can draw straight lines, as well as the accuracy of linear adjustments.
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:10722
    • 提供者:Adams
  1. GraphicsAlg

    0下载:
  2. 多种图形学算法的实现,如DDA直线法等,比较全面。-multiple graphics algorithm for example, the DDA straight, more comprehensive.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:133175
    • 提供者:shifu2007
  1. 1800Decorations

    0下载:
  2. 该源码是一个问题的解决方法。问题是给你个长为L的串,串中可以出现n种字符,还给出m个子串,求有多少个长为n的只由这些字串组成的串。输入例子:4 5 6 ABB BCA BCD CAB CDD DDA 结果为2.而5 4 5 E D C B A的结果为625-source of the problem is a solution. The problem is that you have the head of the L series, the series can occur n ch
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:8101
    • 提供者:姚秋林
  1. threeSamplesForOpenGL

    0下载:
  2. 第一个是分别用Bresenham和DDA算法画直线,第二个是画圆算法,第三个是cohen-sutherland算法的实现-respectively DDA Bresenham algorithm and line drawing, and the second is drawcircle algorithm, Cohen is the third-Algorithm of sutherland
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:211863
    • 提供者:邹文科
  1. console_graphic

    1下载:
  2. 用控制台程序(Console project)实现计算机图形学的基本图形,其中Bresenham为Bresenham算法画线的项目,输入起点和终点;dda为DDA算法画直线的项目,输入起点和终点;mid_point为中点画线法的项目,输入起点和终点;Bres_circle为根据Bresenham算法画圆,输入圆心点和半径; midpoint_circle为中点画圆法,包括填充,输入圆心点和半径;midpointEllipse为中点画椭圆,包括填充,输入圆心点和长短轴; duobianxi
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:1745205
    • 提供者:李文
  1. DDABresenham

    0下载:
  2. 利用VB编制的直线的DDA算法和圆的Bresenham算法等程序.很好.-VB establishment of the DDA straight round of the algorithm and the Bresenham algorithm, and other procedures. Good.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3104
    • 提供者:zhangwanglizhao
  1. 00_Single_Mid_DDA_LINE

    0下载:
  2. Single_Mid_DDA_LINE一个DDA算法画线的小程序,希望对初学者有些帮助,学习图形学都要学这个。-Single_Mid_DDA_LINE a line drawing algorithm small procedures, Some want to help beginners learn the graphics needed to learn.
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:1121
    • 提供者:rosie
  1. 00_DDA_LINE

    0下载:
  2. 一个DDA算法画线的c程序,希望对初学者有些帮助,学习图形学都要学这个。-a line drawing algorithm c procedures in the hope that some help for beginners, students are learning the graphics.
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:836
    • 提供者:rosie
  1. shiyang1

    1下载:
  2. 实现DDA直线生成算法、Bresenham直线生成算法、中点绘圆算法,以及多边形扫描线填充算法-achieve DDA line drawing algorithm, the Bresenham algorithm, which generates the midpoint painted circle algorithm, and polygon scan line filling algorithm
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:61869
    • 提供者:dangdang
  1. tuxingxueshiyan1

    1下载:
  2. 《计算机图形学》 实验一 基本图形的生成 实验目的: 1、编写直线的DDA和Bresenham算法的实现程序,验证算法的正确性。 2、编写圆的Bresenham算法或中点算法的实现程序,验证算法的正确性。 3、用多边形的扫描线填充算法对一多边形进行填充,验证算法的正确性。 4、使用Cohen-Sutherland算法裁减二维线段或使用Sutherland-Hodgman算法对多边形进行裁减,验证算法的正确性。 5、通过算法的编写,切实掌握图形学中直线和圆生成的原理以及
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:44947
    • 提供者:fisherman
  1. 0102050202

    0下载:
  2. 计算机图形学设计,实现画线、画圆、画多边形,用DDA算法实现画线,用Bresenham 算法实现画圆。还有实现区域的填充和多边形的裁剪,填充用种子填充算法,多边形的裁剪用的是Sutherland_Hodgman算法!本程序只是实现这些算法,如要使用,还可以进行完善!谢谢!-computer graphics design, realization of line drawing, Circle, drawing polygons, DDA algorithm used for line draw
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:56188
    • 提供者:张建
  1. TC-graphics

    0下载:
  2. DDA画线算法 种子填充算法 扫描线种子填充算法 增量算法画线 三视图算法-DDA line drawing algorithm seed filling algorithm scanning lines seed filling algorithm incremental algorithm line drawing algorithm View 3
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:4571
    • 提供者:jonny
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 33 »
搜珍网 www.dssz.com