-
鼠标、手势画线
unity 实现鼠标、移动端手势画线
public class DrawLineByMouse : MonoBehaviour {
public Material mat;
public List vertexPosList= new List();
public List breakFlagList = new List(); //当为真时,需要断开
public Color lineColor;
Vector2 _lastMousePos;
Vector2 _curMousePos;
bool _canDrawLine=false;
bool _mouseButtonHaveUp = false;
void OnGUI(){
if (!Input.GetMouseButton(0))
{
if (vertexPosList.Count > 1)
{
_mouseButtonHaveUp = true;
}
return;
}
_curMousePos = new Vector2(Input.mousePosition.x / (float)Screen.width, Input.mousePosition.y / (float)Screen.height);
if (Vector3.Distance(_lastMousePos,_curMousePos)>0.001f)
{
vertexPosList.Add(_curMousePos);
- 2022-03-21 05:37:56下载
- 积分:1
-
Set
使用C语言建立带头结点链表实现了集合。并进行了性能上的优化。(Achieve set using C to build list witch head node. And make optimization in performance.)
- 2009-11-18 13:29:05下载
- 积分:1
-
Perl
perl c it 以前有些应用中perl的速度比较慢,但是如果和c结合起来,就可以解决这样的问题,(perl c it in perl some applications before the slower, but if, and c together, we can solve this problem,)
- 2016-05-07 17:59:32下载
- 积分:1
-
乾勤TC275开发板例程BaseFramework_TC27xB_GPIO
乾勤TC275开发板例程,General Purpose I/O Ports(GPIO)模块例程(Qianqin TC275 DEMO,General Purpose I/O Ports(GPIO))
- 2020-06-20 06:40:02下载
- 积分:1
-
SpectrumAnalyzer(CVI)
这是一个用CVI编写的模拟标准频谱仪界面,包含了前面板和各种常用的输入按键。(This program is developed by CVI used to simulate a standard interface of spectrum analyzer ,presented with popular keys and functions.)
- 2010-01-30 11:23:54下载
- 积分:1
-
Q-GDW集中器下行本地接口协议调试软件
用于电力集中器的本地下行调试,接口调试,串口波特率,抄表设置(Local Downlink Debugging for Power Concentrator)
- 2020-06-21 06:00:02下载
- 积分:1
-
Dialog
MFC对话框各个功能,包括模态非模态和密码验证等等。(MFC dialog box in all functions, including non-modal mode and password authentication and so on.)
- 2009-07-17 00:41:32下载
- 积分:1
-
444
考虑调度计划和运行经济性的风电场储能容量优化计算(Consider scheduling plans and operating economy of the wind farm storage capacity optimization)
- 2014-04-01 21:55:54下载
- 积分:1
-
m
说明: 用Visual C++实现模糊图像恢复处理程序实例(Using Visual C++ fuzzy image restoration processing examples)
- 2009-10-17 20:48:58下载
- 积分:1
-
smart_car
智能小车寻黑线测试程序,经典资料!电子设计大赛 小车(Smart car found black line test program, the classic material!
)
- 2013-06-20 15:38:38下载
- 积分:1