-
Bresenham
bresenham画直线,WIN32,计算机图形学基础类源代码(bresenham画直线)
- 2009-03-13 01:17:52下载
- 积分:1
-
TIchinese_A2007
TMS320C6747 库文件, 吐血推荐, 找了好久, 希望对做DSP的朋友有帮助(TMS320C6747 libraries, recommended blood, looking for a long time, hope to help make friends DSP)
- 2010-12-21 10:50:37下载
- 积分:1
-
AD9850
DDS9850,亲测可用,有中文解释,信号发生器(DDS9850, pro-test is available, there are Chinese explanation, the signal generator)
- 2014-02-18 11:54:08下载
- 积分:1
-
Tool-X-master
Awsome Generation of data and key and other stuff
- 2019-05-21 22:19:57下载
- 积分:1
-
FOC控制理论(超好)
说明: 电机控制FOC算法理论,简单易懂,初学首选。(The theory of FOC algorithm for motor control is simple and easy to understand. First choice for beginners.)
- 2021-04-27 13:08:44下载
- 积分:1
-
EX33_2812-FFT-FIR
DSP2812 滤波代码 开发板历程 简单明了(DSP2812 )
- 2012-04-20 18:28:49下载
- 积分: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
-
HR员工信息管理系统
HR员工信息管理系统+Winform+access+三层架构
- 2023-05-10 10:20:04下载
- 积分:1
-
ArcGIS-Engine10
c#学习,arcgis engine学习(Is the bible of gis development, study on the deepening of learning c#, friend stop your steps, click the download button, will give you a surprise!)
- 2016-05-30 23:50:07下载
- 积分:1
-
特别篇 mesh网格剖分
说明: 适合初学者学习的fluent网格划分以及udf动网格(A fluent udf example)
- 2020-05-17 19:53:33下载
- 积分:1