上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: 本书介绍如何在C++中使用OpenGL(Open Graphics Library开放图像库)进行3D图形编程Windows操作系统使用开发工具和库:Visual Studio 2015窗口管理 GLFW扩展库 GLEW数学库 GLM纹理管理 SOIL2 硬件方面:GLSL(OpenGL着色语言)进 阅读全文
posted @ 2022-01-27 17:41 yangly 阅读(766) 评论(0) 推荐(0)
摘要: 做矢量瓦片时发现项目使用的Tippecanoe不能直接处理shp类型文件,需要将shp转成geojson类型。在网上查找相关资料: https://blog.csdn.net/weixin_43857611/article/details/120556351 https://www.cnblogs. 阅读全文
posted @ 2022-01-27 16:09 yangly 阅读(752) 评论(0) 推荐(0)
摘要: 想在qt中安装opencv编写图像识别程序。 下载opencv 试下载github以及官网上安装包,按照一些文章安装均未成功,缺少文件,准备用brew命令行下载,但是本机mac没有brew,故先下载brew。 下载安装brew 按照一些文章均未成功,如下方法成功了:命令行粘贴以下内容 /bin/zs 阅读全文
posted @ 2020-11-07 22:18 yangly 阅读(676) 评论(0) 推荐(0)
摘要: 学习B站 https://www.bilibili.com/video/av34118200?p=41 还没写完,1、撞柱子没死呢 2、没计分呢 #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #i 阅读全文
posted @ 2020-01-13 17:11 yangly 阅读(437) 评论(0) 推荐(0)
摘要: 学习B站 https://www.bilibili.com/video/av34118200?p=17 #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> int high, width;//windo 阅读全文
posted @ 2020-01-13 17:05 yangly 阅读(407) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> int high, width;//windows int bird_x, bird_y; // bird position int bar_y, b 阅读全文
posted @ 2020-01-13 17:02 yangly 阅读(844) 评论(0) 推荐(0)
摘要: 执行源文件的时候有点问题,建工程然后执行就没问题,不知为啥,难道是编译器问题? #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #define High 15 //windows dimention 阅读全文
posted @ 2020-01-13 16:58 yangly 阅读(423) 评论(0) 推荐(0)
摘要: 修改参数就可以修改生命演进过程 #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #define High 20 #define Width 50 int cell[High][Width]; voi 阅读全文
posted @ 2020-01-13 16:52 yangly 阅读(896) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #define High 15 #define Width 35 #define EnemyNum 5 int canves[High][Width] 阅读全文
posted @ 2020-01-13 15:54 yangly 阅读(265) 评论(0) 推荐(0)
摘要: /* 封装函数显示界面 void showMenu() */ #include<iostream> using namespace std; #include<string> #define MAX 1000 // 设计联系人结构体 struct Person { // name string m_ 阅读全文
posted @ 2020-01-13 14:36 yangly 阅读(437) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页