虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

z-buffer

  • 本程序是vfd显示编码

    本程序是vfd显示编码,0-9,A-Z;和一些其他字符的编码

    标签: vfd 程序 编码

    上传时间: 2016-04-07

    上传用户:nanfeicui

  • 本程序是用于WGS-84向北京1954坐标系转换的。要想进行转换需要至少3个控制点。这些后

    本程序是用于WGS-84向北京1954坐标系转换的。要想进行转换需要至少3个控制点。这些后,程序通过转换参量计算待转换点在北京1954坐标系中的空间直角坐标。然后将空间直角坐标转换成大地坐标,最后再将大地坐事本文件中。首先将控制点数据保存在一个记事本文件中。在此文件中每行对应一个控制点的信息,按先北京1954坐标系X、Y、Z再WGS-84坐标系X、Y、Z,每个数据用空格分开。然后将要输入的待转换点坐标写入令一个记事本文件,本程序可同时计算多个待转换点数据,在记事本中每行保存一个待转换点数据

    标签: 1954 WGS 转换 84

    上传时间: 2013-12-14

    上传用户:Amygdala

  • This example describes how to use the ADC and DMA to transfer continuously converted data from ADC

    This example describes how to use the ADC and DMA to transfer continuously converted data from ADC to a data buffer. The ADC is configured to converts continuously ADC channel14. Each time an end of conversion occurs the DMA transfers, in circular mode, the converted data from ADC1 DR register to the ADC_ConvertedValue variable. The ADC1 clock is set to 14 MHz.

    标签: continuously ADC describes converted

    上传时间: 2014-01-03

    上传用户:徐孺

  • usb bulk 传输例程。 * The bulkusb driver is a generic function driver, based on the Windows Driver Mode

    usb bulk 传输例程。 * The bulkusb driver is a generic function driver, based on the Windows Driver Model (WDM). * Supports Plug and Play(PnP), Power Management(PM), Windows Management Instrumentation (WMI) and the Selective Suspend (SS) features. * This sample is based off the selSusp DDK sample. Please refer the selSusp sample and the DDK docs to understand the handling of PnP, PM, WMI and SS features and implementations. * The USB device used for this sample is a generic Intel I82930 USB evaluation board programmed with a simple loopback test using a 64 KB circular buffer. None of the code in the sample is specific to this controller chip.

    标签: driver function Windows bulkusb

    上传时间: 2016-04-25

    上传用户:270189020

  • PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = Plo

    PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = PlotSphereIntensity(...) Plots the intensity (as color) of a number of points on a unit sphere. Input: azimuth (phi), in degrees elevation (theta), in degrees intensity (optional, if not provided, a green sphere is produced) All inputs must be vectors or matrices of the same size. Data does not have to be evenly spaced. When there aren t enough points to draw a smooth sphere, additional points (with color) are interpolated. Output: h - a handle to the patch object The axes are also plotted: positive x axis is red positive y axis is green positive z axis is blue

    标签: PlotSphereIntensity elevation azimuth intensity

    上传时间: 2014-01-15

    上传用户:ruan2570406

  • 富士通单片机MB902420系列 CAN Project: CAN0 will work as a simple Repeater. Received data will appear at P

    富士通单片机MB902420系列 CAN Project: CAN0 will work as a simple Repeater. Received data will appear at Port P47..P40 (UserLEDs of FlashCan100P) and will send out again as byte-packages to ID#2 Receive-Buffer #1 : basic can Transmit-Buffer #6 : full-can ID #2

    标签: will Repeater Received Project

    上传时间: 2016-04-27

    上传用户:www240697738

  • 富士通单片机MB902420系列 extINT Project: All external Interrupt-Pins INT0 .. INT7 will be enabled. A fall

    富士通单片机MB902420系列 extINT Project: All external Interrupt-Pins INT0 .. INT7 will be enabled. A falling edge on INTx will toggle PDR4_P4x in order to toggle the LEDx of the Flash-CAN-100P Board e.g. falling edge on INT3 will result in LED D3 will toggleP47..P40 (UserLEDs of FlashCan100P) and will send out again as byte-packages to ID#2 Receive-Buffer #1 : basic can Transmit-Buffer #6 : full-can ID #2

    标签: Interrupt-Pins external Project enabled

    上传时间: 2016-04-27

    上传用户:waizhang

  • 这是一个图形变换的程序

    这是一个图形变换的程序,按字母“Y”画一个用点组成的圆;按字母“S”画一 个用不同颜色填充的三角形;按字母“Z”画一个用不同颜色填充且带有边框图案 的矩形;按“q”键退出。

    标签: 图形 变换 程序

    上传时间: 2016-04-30

    上传用户:一诺88

  • 功能:在默认有唯一解的情况下

    功能:在默认有唯一解的情况下,求出一次方程组的解 使用说明:1.在方程计算器所在目录下新建一个文本文档并另存为“matrix”(注意文件名的大小写和拼写) 格式: 第一行是未知数个数n 后面每行n+1个用空格隔开的数,表示一个方程 (e.g) 2x+3y-z=6 就输入 2 3 -1 6 2.保存之后双击运行“方程计算器” 3.程序会在目录下生成名为“answer”的文本文档,打开就是答案了。

    标签:

    上传时间: 2016-05-02

    上传用户:xg262122

  • 表达式类型的实现: 1、 一个表达式和一颗二叉树之间

    表达式类型的实现: 1、 一个表达式和一颗二叉树之间,存在着自然的对应关系。 2、 假设算术表达式Expression内可以含有变量(a~z)、常量(0~9)和二元运算符(+,-,*,/,^)。实现一下操作。 (1) ReadExpr(E)——以字符序列的形式输入语法正确的前缀表示式并构造表达式E。 (2) WritrExpr(E)——用带括弧的中缀表示式输出表达式E。 (3) Assign(V,c)——实现对变量V的赋值(V=c),变量的初值为0。 (4) Value(E)——对算术表达式E求值。 (5) CompoundExpr(P,E1,E2)——构造一个新的复合表达式(E1)P (E2)。

    标签: 表达式 二叉树

    上传时间: 2013-12-09

    上传用户:luke5347