-
CuraEngine-master
3维切片算法引擎写上传资料的详细功能、包含内容说明(至少要20个字)。尽量不要让站长把时间都花费在为您修正说明上。压缩包解压时不能有密码。(Three dimensional slice algorithm engine written detailed upload function, including the content description (at least 20 characters). Try not to let station to the time spent on your note on the amendment. Extracting compressed package can not have a password.)
- 2013-11-08 10:19:08下载
- 积分:1
-
常用的图像处理算法及其实现(C语言)
常用的图像处理算法及其实现(C语言)
- 2019-06-04下载
- 积分:1
-
完全基于模型设计的流水灯源代码及模型(包括底层)
基于模型设计利用一键式进行代码生成,经试验验证改代码能实现流水灯的功能,能准确进行延时控制(目标板为飞思卡尔MC9S12XEP100)
- 2022-12-08 16:20:03下载
- 积分:1
-
PP_Ssl101h
CCNET protocol
Programming sample for protocol CCNET
- 2014-10-04 15:13:52下载
- 积分:1
-
LED测试程序
说明: 观测LED闪动,使用stm32f407系列单片机,联合开发硬件,LED驱动源码,作为mcu初学者入门学习的不二选择(Observing LED flicker, using stm32f407 series MCU, joint development of hardware, LED driver source code, as the first choice for beginners of MCU to learn)
- 2020-06-16 22:20:01下载
- 积分:1
-
wpf滑动效果 实例源码
鼠标拖动时 控件滑动 截图: 核心代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using System.Windows.Media.Animation;namespace FlashPrac2{ /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } /// /// 完成缓冲效果 /// /// 起始位置 /// 目标位置 /// 加速加速度 /// 减速加速度 /// 持续时间 private void DoMove(DependencyProperty dp, double to, double ar, double dr, double duration) { DoubleAnimation doubleAnimation = new DoubleAnimation();//创建双精度动画对象 doubleAnimation.To = to;//设置动画的结束值 doubleAnimation.Duration = TimeSpan.FromSeconds(duration);//设置动画时间线长度 doubleAnimation.AccelerationRatio = ar;//动画加速 doubleAnimation.DecelerationRatio = dr;//动画减速 doubleAnimation.FillBehavior = FillBehavior.HoldEnd;//设置动画完成后执行的操作 grdTransfer.BeginAnimation(dp, doubleAnimation);//设置动画应用的属性并启动动画 } private double pressedX; /// /// 点击鼠标,记录鼠标单击的位置 /// /// /// private void grdTest_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { ////获得鼠标点击的X坐标 pressedX = e.GetPosition(cvsGround).X; } ////鼠标释放时的操作 private void grdTest_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e) { double transferLeft = Convert.ToDouble(grdTransfer.GetValue(Canvas.LeftProperty)); //btn1.Content = transferLeft.ToString(); if (transferLeft > 0) { transferLeft = 0; } if (this.Width - transferLeft > cvsGround.Width) { transferLeft = this.Width - cvsGround.Width; } ////获得鼠标释放时的位置 double releasedX = e.GetPosition(cvsGround).X; ////获得距离间隔 double interval = releasedX - pressedX; pressedX = 0; ////计算出传送带要的目标位置 double to = transferLeft interval; ////移动 //btn1.Content = transferLeft.ToString() " " to.ToString(); // btn1.Content = transferLeft.ToString() " " to.ToString(); DoMove(Canvas.LeftProperty, to, 0.1, 0.5, 0.5); } }}
- 2014-06-24下载
- 积分:1
-
将H264码流打成RTP包UDP发送vlc测试
将H264码流打成RTP包UDP发送vlc测试,
- 2022-01-26 03:00:51下载
- 积分:1
-
MSP430F149MCUSTEPPERMOTOR
一篇关于步进电机的细分,驱动,加速,减速的文章。(An article on the breakdown of stepper motors, drives, speed up, slow down the article.)
- 2007-07-30 16:53:49下载
- 积分:1
-
FileBillParsor
说明: 在文件系统中,FileBillParsor利用重叠IO,分块、分行处理数据(in the file system, using overlapping FileBillParsor IO, block, the branch data processing)
- 2006-05-11 13:52:04下载
- 积分:1
-
003
说明: 第三题
分别用类的继承、虚函数、抽象类继承、接口实现计算球、圆柱、圆锥的表面积和体积。(Third questions
The surface area and volume of sphere, cylinder and cone are calculated by class inheritance, virtual function, abstract class inheritance and interface.)
- 2020-11-01 13:39:54下载
- 积分:1