일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 주일설교
- 딥러닝
- Deep learning
- openCV
- probability
- Statistics
- nodeJS
- R
- data science
- Machine Learning
- 김양재
- 김양재 목사님
- 빅데이타
- Big Data
- 데이터 과학
- 빅 데이타
- No SQL
- 통계
- 확률
- Artificial Intelligence
- 빅 데이터
- node.js
- 몽고디비
- 인공지능
- c++
- MongoDB
- 빅데이터
- 김양재 목사
- WebGL
- 우리들교회
- Today
- Total
Scientific Computing & Data Science
using UnityEngine; using System.Collections; public class RandomNumber : MonoBehaviour { public GUIText myText; System.Random r = new System.Random((int)System.DateTime.Now.Ticks); // Use this for initialization void Start () { int random = r.Next(1, 1000); myText.text = random.ToString(); } // Update is called once per frame void Update () { } }
using UnityEngine; using System.Collections; public class Line_Animation : MonoBehaviour { public GameObject Target1; public GameObject Target2; public Material mtl; public Color lcolor; // Use this for initialization void Awake() { this.renderer.material = mtl; } void Start () { LineRenderer raspberry = gameObject.AddComponent(); raspberry.SetWidth(0.05f,0.05f); raspberry.SetVertexCount(2); ras..