opengl大作业乡间小屋
时间: 2023-11-02 15:07:35 浏览: 303
引用: 本程序应用了渲染,回显列表,粒子系统,纹理贴图,定时回调,光照,消隐,伪装反射等技术。引用:import requests from bs4 import BeautifulSoup def get(gameurl): res = requests.get(gameurl) res.encoding = 'gb2312' soup = BeautifulSoup(res.text, 'html.parser' ) tm = soup.select('.tm_list') for games in tm: try: title = games.select('a').text print (title) except: pass gameurl = 'http://www.4399.com/flash/gamehw.htm' print (get(gameurl)) 输出后获取相关信息。
opengl大作业乡间小屋是一个使用了多种技术的作品。该程序应用了渲染、回显列表、粒子系统、纹理贴图、定时回调、光照、消隐、伪装反射等技术来实现。该作品可能还可以进一步加入投影、视点切换、移动、鼠标响应、中文字幕、凹凸等功能来提升用户的体验。
阅读全文