-
VHDL应用程序100例,适合初学者研究及练习 其中包含加法器译码器等多程序。...
VHDL应用程序100例,适合初学者研究及练习 其中包含加法器译码器等多程序。-100 samples of VHDL, it is fit for beginner to study and practice.
Adding machine, decoder and others are included.
- 2022-03-20 23:08:41下载
- 积分:1
-
ucGUI3.98源码
ucGUI最后一个开源版本3.98的源码,比较了网上很多类似资源,这个是比较全的。移植到STM32及VC平台均无问题
- 2022-07-06 23:09:23下载
- 积分:1
-
实现了文件的拷贝功能,使一个很好的文件拷贝测试程序,用来做小型的联系使用...
实现了文件的拷贝功能,使一个很好的文件拷贝测试程序,用来做小型的联系使用-achieve a functional copy of the document, a copy of the document very good test procedures used in making use of small links
- 2022-11-11 07:45:04下载
- 积分:1
-
WinCE 上实现大头贴的基本功能,可以实现大头贴大小自动适应。...
WinCE 上实现大头贴的基本功能,可以实现大头贴大小自动适应。-WinCE still photos to achieve the basic functions can be achieved automatically adapt to the size of still photos.
- 2022-10-21 10:50:04下载
- 积分:1
-
VB to create irregular forms
用VB.Net创建不规则窗体-VB to create irregular forms
- 2022-11-06 04:35:03下载
- 积分:1
-
a screensaver procedures, and use their own definition of the class when CWND al...
一个屏保程序,用自己定义的CWND类来当替代基于对话框程序的对话框的实现,跑马灯效果文字的实现过程.-a screensaver procedures, and use their own definition of the class when CWND alternative based on the dialog box procedure and that the realization of 5,250 characters effect the implementation process.
- 2022-01-31 10:30:14下载
- 积分:1
-
a very good category CButtonST
一个非常好的CButtonST类-a very good category CButtonST
- 2023-06-27 17:40:04下载
- 积分:1
-
in MDI, to view tablectrl achieve similar results, an example
在mdi中,将view实现类似tablectrl的效果,实例1-in MDI, to view tablectrl achieve similar results, an example
- 2022-06-13 11:18:18下载
- 积分:1
-
bmycrust作为输入的三维散乱点云并返回一个紧流形,T
BMyCrust take as input a 3D scatter points cloud and return a tight, manifold, triangulation.
Remember that crust algorithm needs a cloud representing a volume, so open surface may give inaccurate results. For example : a plane can not be triangulated, half-sphere is in doubt, a sphere with a small hole shoud be good.
The more points are given the best the surface will be fitted, of course in this case you would have to wait more and in the worst case a memory help error may occurs. The best results are obtained with more points in high curvature feature.
The old version did not ensure the output surface to be a manifold so it could be used only for graphical purpose. In the new one a tight, regular manifold is returned. It as outward normals orientation, after using this algorithm is very easy to get an STL file from a point cloud.
I added a manifold extraction tool that also correct the errors (slivers) generated by delaunayn during the initial tessellation.-BMyCr
- 2022-03-12 15:17:47下载
- 积分:1
-
qt alarm实现闹钟
#include"alarm.h"
#include
Alarm::Alarm(QWidget * parent)
:QDialog(parent)
{
init();
layout();
con();
};
// ******
// 初始化
// ******
void Alarm::init()
{
setWindowTitle("Alarm clock"); //设置标题
setFixedSize(QSize(300,80)); //固定大小
timer=new QTimer; //控制lcd的时间刷新
uptimer=new QTimer; //控制对话框上升
dtimer=new QTimer; //控制对话框下降
itimer=new QTimer;
lcdNumber=new QLCDNumber; //显示当前时间
lcdNumber->setFixedSize(QSize(150,50)); //固定大小
lcdNumber->setNumDigits(8); //显示八个数字,默认是显示5个数字
lcdNumber->setSegmentStyle(QLCDNumber::Flat); //填充颜色,默认是白色的
lcdNumber->display(QTime::currentTime().toString("hh:mm:ss")); //设置格式,还有其他形式的
label=new QLabel(QString::fromLocal8Bit("闹钟")); //提示设置下个闹钟
- 2022-01-28 04:54:06下载
- 积分:1