登录
首页 » 图形图像 » 着色器语言编程的最经典书籍shader.x

着色器语言编程的最经典书籍shader.x

于 2022-04-18 发布 文件大小:7.11 MB
0 174
下载积分: 2 下载次数: 1

代码说明:

着色器语言编程的最经典书籍shader.x-Shader programming language classic books shader.x

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • png
    png-1.0.3.H头文件-png-headers 1.0.3.H
    2022-04-10 22:44:44下载
    积分:1
  • 基于VisualBasic的染色机智能监控程序
    基于VisualBasic的染色机智能监控程序-the dyeing machine intelligent monitoring procedures
    2023-03-31 00:50:03下载
    积分:1
  • 网格,温度分布,并计算结果…
    cad图形的网格剖分,温度分布计算,以及计算结果的图形显示-cad graphics grid, temperature distribution, and to calculate the results of the graphics
    2022-03-25 02:52:51下载
    积分:1
  • LEQM是高
    LEQM是一个高级绘图系统,用于显示内存中EverQuest世界的信息。 来源:http://sourceforge.net/projects/leqm/ -LEQM is a high-level cartography system, uses in to demonstrate in the memory the EverQuest world information. Origin: Http://sourceforge.net/projects/leqm/
    2022-02-22 04:32:22下载
    积分:1
  • Beisaierniuman function mapping code, a common mathematical functions code, VC++...
    贝赛尔纽曼函数绘图代码,一种常用的数学函数代码, VC++60 开发,编译通过-Beisaierniuman function mapping code, a common mathematical functions code, VC++60 develop, compile
    2023-04-23 11:05:03下载
    积分:1
  • 随意在平面上绘并有位顺着轨迹移动
    随意在平面上绘图并有位图顺着轨迹移动-at random plane graphics and bitmap along the trajectory mobile
    2022-03-19 16:36:57下载
    积分:1
  • had any news? Think that the news of the information in the record as Greek? If...
    消息中有什么? 是否觉得一个消息记录中的信息像希腊语一样?如果是这样,那么看一看下面的解释: hwnd 32位的窗口句柄。窗口可以是任何类型的屏幕对象,因为Win32能够维护大多数可视对象的句柄(窗口、对话框、按钮、编辑框等)。 message 用于区别其他消息的常量值,这些常量可以是Windows单元中预定义的常量,也可以是自定义的常量。 wParam 通常是一个与消息有关的常量值,也可能是窗口或控件的句柄。 lParam 通常是一个指向内存中数据的指针。由于W P a r a m、l P a r a m和P o i n t e r都是3 2位的,因此,它们之间可以相互转换。-had any news? Think that the news of the information in the record as Greek? If this is the case, then look at the following explanation : hwnd 32 of the window handle. Window can be any type of screen, because most of Win32 to maintain a handle visual objects (windows, dialog boxes, buttons, edit box, etc.). Message used to distinguish between other sources of regular money, These constants can be Windows modules predefined constants, it can also be a self-defined constants. WParam is usually a source with the regular money, it might be the window handle or control. LParam is usually a memory data at the target. As a W P a r m, l P a r m and a P i n o t r e are three-two,
    2022-02-27 09:28:32下载
    积分:1
  • 一个质量评价方法的源代码,区别于传统的PSNR评价方法,属于处理学科研究的前沿。
    一个图像质量评价方法的源代码,区别于传统的PSNR评价方法,属于图像处理学科研究的前沿。-a method to evaluate image quality of the source code, PSNR different from the traditional evaluation methods, image processing belonging to the forefront of interdisciplinary research.
    2022-07-21 14:01:46下载
    积分:1
  • 利用在Visual C++ 6.0环境下创建MFC AppWizard(exe),实现直线/圆/椭圆中点Bresenham算法...
    利用在Visual C++ 6.0环境下创建MFC AppWizard(exe),实现直线/圆/椭圆中点Bresenham算法-Take advantage of Visual C++ 6.0 environment to create MFC AppWizard (exe), to achieve a straight line/circle/elliptical mid-point of Bresenham Algorithm
    2022-01-21 17:32:58下载
    积分:1
  • 采用两种不同的方法绘制曲线 a) 二次B样条曲线 二次B样条曲线段的函数表达式为 (1) 其中 为控制顶点。 说明: ① 对任给定的一组控制顶点 ,每相邻三个控...
    采用两种不同的方法绘制曲线 a) 二次B样条曲线 二次B样条曲线段的函数表达式为 (1) 其中 为控制顶点。 说明: ① 对任给定的一组控制顶点 ,每相邻三个控制顶点为一组进行曲线段绘制。即 为一组, 为一组,…, 为一组,所有曲线段连在一起即构成了整个B样条曲线。事实上,前一条曲线段的终点即是下一条曲线段的起点。 ② 在每一段曲线的绘制过程中, 取不同的值便得到曲线上不同的点。例如 时,由公式(1)可得到曲线的起点, 时可计算得到曲线的终点。为处理方便,可进行等距离选择,如10等份, 依次取0,0.1,0.2…,1.0,从而可计算得到10个曲线段上的点,把这10个点依次连接,就可得到该曲线段。 b) 四点插值细分曲线 四点插值细分曲线的表达规则为 其中 为控制顶点, 为细分次数, 为顶点下标。即每细分一次,在任意两点之间插入一顶点。为方便处理起见,可绘制成封闭曲线。 (初始)控制顶点保存在文件中。 给定两个测试文件c1.txt,c2.txt-using two different methods of drawing curve a) quadratic B-spline curves of the second B-spline curves of expression as a function of (1) for the control vertices. Note :-given right of a group of control vertices per three vertices adjacent to a group Marche line drawing. Namely, a group of a group, ... to a group, all of the curves that together constitute the entire B-spline curves. In fact, a curve before the end of the next one that is the starting point of the curve. curve in every section of the drawing process, different from the value curve will be differe
    2022-03-20 07:54:53下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载