Fork me on GitHub
上一页 1 ··· 22 23 24 25 26
摘要: Render Mode: Screen Space - Overlay:将UI放置在场景的上面,调节场景大小或调整分辨率,则Canvas也会随之调整。 Screen Space - Camera:Canvas由一个特定的相机渲染,相机的设置会影响UI。 World Space:使Canvas像场景中 阅读全文
posted @ 2017-04-29 00:21 RongT 阅读(3625) 评论(0) 推荐(1)
摘要: http://www.eclipse.org/windowbuilder/download.php 找到对应版本的window builder 如果不知道版本的话,可以在你的Eclipse-help-about eclipse中查看。或在eclipse的安装目录的.eclipseproduct下查看 阅读全文
posted @ 2017-04-28 20:45 RongT 阅读(2423) 评论(0) 推荐(1)
摘要: 1 #include 2 #define N 10 3 4 void QuickSort(int a[],int left, int right); 5 int BinSearch(int a[], int low, int high, int key); 6 int main() 7 { 8 int a[N] = {2,8,4,9,7,6,5,3,1,0}; 9 ... 阅读全文
posted @ 2017-04-23 22:38 RongT 阅读(216) 评论(0) 推荐(2)
摘要: 1 #include 2 #define N 10 3 void swap(int *p1, int *p2); 4 void BubbleSort(int *a); 5 void SelectSort(int a[]); 6 void QuickSort(int *a, int left, int right); 7 int main(){ 8 int a[N] = {... 阅读全文
posted @ 2017-04-23 22:33 RongT 阅读(361) 评论(0) 推荐(1)
上一页 1 ··· 22 23 24 25 26