-
m
说明: 通用m序列生成器,可以自动设置初始值和初始相位(GM m sequence generator can automatically set the initial value and initial phase)
- 2009-08-04 22:28:04下载
- 积分:1
-
新版贪吃蛇(可连网)
用开发的新版贪吃蛇游戏,支持连网功能,并可由玩家选择主角的外观和食物的外观.(with the development of the new Snake games, support networking function, players can choose from the protagonist's appearance and the appearance of the food.)
- 2005-07-23 19:42:44下载
- 积分:1
-
Java中的Canvas绘图源码实例
Java中的Canvas绘图源码实例,主要是画线条、弧线、圆角矩形、三角形、文字、圆形等简单的几何图形,主要是通过创建DrawingCanvas对象canvas,为canvas设置命令监听者,实现接口CommandListener的方法,把缓冲区图像的内容绘制到画布上,画图部分代码:
int w = getWidth(); // 画布的宽度
int h = getHeight(); // 画布的高度
Image buffer = Image.createImage(w, h); // 用于绘图的缓冲图像
Graphics gc = buffer.getGraphics(); // 获取缓冲图像的图形环境
// 清除画布
public void clearScreen() {
gc.setColor(255,255,255); // 设置绘图颜色为白色
gc.fillRect(0,0,w,h); // 把缓冲图像填充为白色
gc.setColor(255,0,0); // 设置绘图颜色为红色
}
// 绘制直线
public void drawLine() {
setTitle("直线"); // 设置画布的标题
clearScreen(); // 清除画布
gc.drawLine(10,10,w-20,h-20); // 绘制黑色直线
gc.setColor(0,0,255); // 设置绘图颜色为蓝色
gc.drawLine(10,h/2,w-10,h/2); // 绘制蓝色直线
}
// 绘制弧
public void drawArc() {
setTitle("弧线和填充弧");
clearScreen();
gc.drawArc(5,5,w/2-20,h/2-20,60,216); // 绘制弧线
gc.drawArc(5,h/2-10,w/2-20,h/2-20,0,360); // 绘制圆
gc.setColor(0,0,255);
gc.fillArc(w/2,5,w/2-20,h/2-20,60,216); // 绘制填充弧线
gc
- 2023-04-11 05:50:03下载
- 积分:1
-
This is a high
这是一种求解微分方程的高精度数值方法,对解决很多非线性问题有很大优势,由钟万勰院士首创-This is a high-precision numerical solution of differential equation methods, to solve many nonlinear problems has great advantages, from the first academician Zhong Wanxie
- 2022-10-27 14:50:03下载
- 积分:1
-
FAT32_SD-Interface-C-function
在SD卡上实现FAT32文件系统,C实现,可程序结构清晰,简单易懂。里面还有一篇介绍FAT32文件系统的文档,学习代码之前,请耐心将pdf文档研读一遍,这样能达到事半功倍的效果(mplemented on the SD card FAT32 file system, C realized, program structure clear, simple and understandable. There is also a description of the document FAT32 file system, learning code, please be patient to read pdf documents again, so to achieve a multiplier effect。)
- 2013-10-12 08:47:39下载
- 积分:1
-
非平稳噪声下的MUSIC
在空间非平稳噪声下 通过预处理技术 消除噪声的干扰 实现精确的方位估计(Preprocessing technology is used to eliminate noise interference and achieve accurate azimuth estimation under spatial non-stationary noise.)
- 2018-07-09 13:51:19下载
- 积分:1
-
peizhun
//以上的代码加载了两个PCD文件得到共享指针,
//后续配准是完成对源点云到目标点云的参考坐标系的变换矩阵的估计,
//得到第二组点云变换到第一组点云坐标系下的变换矩阵
// 将输入的扫描点云数据过滤到原始尺寸的10%以提高匹配的速度,
//只对源点云进行滤波,减少其数据量,而目标点云不需要滤波处理
//因为在NDT算法中在目标点云 对应的 体素网格数据结构的 统计计算不使用单个点,
//而是使用包含在每个体素单元格中的点的统计数据(The following links describe a set of basic PCL tutorials. Please note that their source codes may already be provided as part of the PCL regular releases, so check there before you start copy & pasting the code. The list of tutorials below is automatically generated from reST files located in our git repository.)
- 2019-04-01 11:00:00下载
- 积分:1
-
enabler-按钮激活工具
enabler-按钮激活工具-enabler- button activation tool
- 2023-02-23 13:35:03下载
- 积分:1
-
Rotary-Machinery-Fault-Diagnosis--
国外的一篇关于旋转机械故障诊断的博士论文,很难找的一篇好论文!(Abroad a doctoral thesis about rotating machinery fault diagnosis, and be helpful for some friends!)
- 2012-10-13 01:01:55下载
- 积分:1
-
tr069协议簇
tr069协议簇.zip包含所有tr系列协议的文档中英文都有,方便查阅,开发(TR069 protocol cluster. zip contains all documents of TR series protocols in both Chinese and English. It is convenient to consult and develop.)
- 2020-06-16 09:00:01下载
- 积分:1