일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 빅 데이타
- 딥러닝
- Big Data
- node.js
- nodeJS
- openCV
- 김양재
- MongoDB
- 통계
- 김양재 목사님
- 주일설교
- Statistics
- 빅데이터
- 데이터 과학
- 인공지능
- 우리들교회
- Machine Learning
- Deep learning
- c++
- 빅데이타
- No SQL
- Artificial Intelligence
- 김양재 목사
- 빅 데이터
- R
- data science
- 몽고디비
- WebGL
- probability
- 확률
Archives
- Today
- Total
목록Device (1)
Scientific Computing & Data Science
Script for an Object Touched on Mobile Devices
using UnityEngine;using System.Collections; public class ObjectTouched : MonoBehaviour {public GUIText myText;private Ray myRay = new Ray();RaycastHit myHit = new RaycastHit(); // Use this for initializationvoid Start () {myText.text = "";} // Update is called once per framevoid Update () { if(Input.touchCount > 0){if(Input.GetTouch(0).phase.Equals(TouchPhase.Began)){myRay = Camera.main.ScreenPo..
CG & Video Games/Unity 3D
2013. 5. 26. 12:21