-
terrainLod
说明: 一个关于地形LOD渲染得例子,给出了渲染得全部代码(a rendering of the terrain in LOD examples given in all rendering code)
- 2006-03-22 20:45:51下载
- 积分:1
-
财务收据打印程序
【实例简介】用于固定收据打印的程序
- 2021-08-06 00:30:59下载
- 积分:1
-
lan
说明: 局域网视频会议,vc6.0/Windows XP编译通过。(LAN video conferencing, vc6.0/Windows XP compile.)
- 2010-03-26 10:58:50下载
- 积分:1
-
momods_macd_martin_eu_h1_ea1.01
一款老外制作的ea(自动交易) 用于mt4软件
该ea使用殃策略(mt4 ea)
- 2020-06-30 23:40:02下载
- 积分:1
-
EffectShow
通过对图象实现各种扫描显示,了解图象的绘图过程,便于实现对图象处理的编程显示。(of images of various scanning, image understanding of the mapping process to facilitate the achievement of the image processing program shows.)
- 2005-06-08 12:55:46下载
- 积分:1
-
界面+浮动+ +停靠窗口+经典代码
VC界面+悬浮+停靠窗口+很经典的代码 VC界面+悬浮+停靠窗口+很经典的代码-VC Interface+ floating+ dock windows+ classic code
- 2022-03-25 06:29:33下载
- 积分:1
-
LPC1788 芯片CAN通信IAP升级程序
通过CAN总线 实现IAP功能,在线更新程序
- 2022-07-03 16:26:14下载
- 积分:1
-
87914810triclopsDemo20
摄像头标定的代码,OpenCV没有提供完整的示例,自己整理了一下,贴出来记录。利用cvFindChessboardCorners找到棋盘在摄像头中的2D位置, 再用cvCalibrateCamera2计算内参(Camera calibration code, OpenCV does not provide a complete example of his order a bit, posted record. Use cvFindChessboardCorners find board in the camera' s 2D position, then calculate the internal reference cvCalibrateCamera2)
- 2011-08-05 13:52:08下载
- 积分:1
-
Bloom
Bloom效果(附代码), 很酷的一个效果,效率不算高。互相交流一下。看看吧!(Bloom effect (with code), a cool effect, efficiency is not high. Exchange about. Let' s see it!)
- 2010-02-02 17:14:45下载
- 积分:1
-
C# 指定主机和端口发消息的实现
Visual C# 指定主机和端口发消息的实现例子,支持和远程主机发送消息,本例子可学习到很多实用的网络方法的用法,以下代码是本功能的核心实现:
richTextBox1.Text = string.Empty;
//实例化UdpClient对象
UdpClient udpclient = new UdpClient(Convert.ToInt32(textBox2.Text));
//调用UdpClient对象的Connect建立默认远程主机
udpclient.Connect(textBox1.Text, Convert.ToInt32(textBox2.Text));
//定义一个字节数组,用来存放发送到远程主机的信息
Byte[] sendBytes = Encoding.Default.GetBytes(textBox3.Text);
//调用UdpClient对象的Send方法将Udp数据报发送到远程主机
udpclient.Send(sendBytes, sendBytes.Length);
//实例化IPEndPoint对象,用来显示响应主机的标识
IPEndPoint ipendpoint = new IPEndPoint(IPAddress.Any, 0);
//调用UdpClient对象的Receive方法获得从远程主机返回的Udp数据报
Byte[] receiveBytes = udpclient.Receive(ref ipendpoint);
//将获得的Udp数据报转换为字符串形式
string returnData = Encoding.Default.GetString(receiveBytes);
richTextBox1.Text = "接收到的信息:" + returnData.ToString();
//使用IPEndPoint对象的Address和Port属性获得响应主机的IP地址和端口号
richTextBox1.Text += "
这条信息来自主机" + ipendpoint.Address.ToString()
+ "上的" + ipendpoint.Port.ToString() + "端口";
//关闭UdpClient连接
- 2022-02-10 10:21:19下载
- 积分:1