码迷,mamicode.com
首页 >  
搜索关键字:leap motion    ( 467个结果
团队介绍 | 魅动 Magic Motion
团队介绍 | 魅动 Magic Motion魅动 Magic Motion 是专注于研发、设计和生产智能化私密生活用品的创新品牌。魅动 Magic Motion 将无线移动通信技术与私密生活产品相结合,开发与智能手机实现无缝连接,通过智能手机的免费App(应用程序)来实现操控的智能私密生活用品。魅动...
分类:其他好文   时间:2014-06-08 06:26:14    阅读次数:200
POJ 1573 Robot Motion.
Description A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are  ...
分类:其他好文   时间:2014-06-08 04:38:32    阅读次数:386
Getting Started with UIKit Dynamics--WWDC 2013 session 206
核心概念(Core concepts)在iOS上面常见的动画以及交互包括以下几种:? Core Animation? UIView animations? Motion effects? Gesture driven interactions? CADisplayLink那么UIKit Dynami...
分类:其他好文   时间:2014-05-26 07:11:39    阅读次数:313
Android “swipe” vs “fling”
onFling will get executed when a user makes a "fling" motion, and said motion has a velocity with it to determine the type of fling it was. However,.....
分类:移动开发   时间:2014-05-26 06:23:31    阅读次数:443
编程题:用函数实现,用户输入年月日,来计算出该日期为当年第几天?
编程题:用函数实现,用户输入年月日,来计算出该日期为当年第几天?#include<stdio.h>/*函数is_leap_year()的返回值是判断该年是否闰年*/intis_leap_year(intyear){intleap;if(year%4==0&&year%100!=0||year%400==0)leap=1;elseleap=0;returnleap;}/*函数len_..
分类:其他好文   时间:2014-05-21 01:13:44    阅读次数:475
POJ 1573 & POJ 2632(两道有趣的Robot)
题目链接:POJ 1573 Robot Motion&POJ 2632Crashing Robots【题意】题意就不说了,有兴趣从链接点进去看吧,就是机器人各种打扫房间,行驶指令。【思路】2632是一道纯模拟题,只要把题意读懂,就可以用代码模拟过程,只是写起来有点蛋疼,代码力还是欠缺啊。而1573感...
分类:其他好文   时间:2014-05-19 10:22:18    阅读次数:197
输入年月日计算出是该年的第多少天
//转换函数如下 int dayofyear(int year, int month, int day){ //k月份 leap判断闰年 int k, leap; int tab[2][13] = { { 0,31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, { 0,31, 29, 31, 30, 31, 30, 31, 31, 30,...
分类:其他好文   时间:2014-05-18 18:27:41    阅读次数:278
输入年份和天数计算出几月几号
//转换函数如下,其中通过指针同时向主函数传回月份和天数 void month_day(int year, int yearday, int *month, int *day){ //k月份,leap判断是否闰年(0非闰年1闰年) int k, leap; int tab[2][13] = { { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30...
分类:其他好文   时间:2014-05-18 05:16:50    阅读次数:262
[ACM] hdu 1035 Robot Motion (模拟或DFS)
Robot Motion Problem Description A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The...
分类:其他好文   时间:2014-05-15 05:48:40    阅读次数:346
HDOJ1035 Robot Motion 【模拟】
Robot Motion Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6079    Accepted Submission(s): 2844 Problem Description A robot h...
分类:其他好文   时间:2014-05-13 08:47:09    阅读次数:265
467条   上一页 1 ... 44 45 46 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!