- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://cutjs.org/
- 软件文档: http://cutjs.org/
软件介绍
CutJS 是一个轻量级的、快速的、可交互的 2D HTML5 渲染引擎,用于跨平台的游戏开发。可用来开发 Web 游戏、iOS 和 Android 等游戏。CutJS 是一个开源的 Canvas 库。
示例代码:
// Create new app
Cut(function(root, container) {
// Subscribe to Cut.Mouse
Cut.Mouse(root, container);
// Set view box
root.viewbox(500, 300);
// Create an image node
Cut.image("base:box").appendTo(root)
// on mouse click on this node
.on(Cut.Mouse.CLICK, function(ev, point) {
// Tween scale values of this node
this.tween().clear().pin({
scaleX : Math.random() + 0.5,
scaleY : Math.random() + 0.5
});
return true;
});
});
// Register an image texture
Cut.addTexture({
name : "base",
imagePath : "base.png",
cutouts : [
{ name : "box", x : 0, y : 0, width : 30, height : 30 }
]
});
Big C++中文版
霍斯特曼 / 姚爱红 / 电子工业 / 2007-3 / 85.00元
本书是一本关于C++的优秀教材,南圣何塞州立大学知名教授Horstmann编写。全书深入探讨了C++的知识,并着重强调了安全的标准模板库;本书较厚,但它可用做程序设计专业学生的教材(两学期)。全书在介绍基础知识后,作者论及了一些高级主题。书中面向对象的设计一章探讨了软件开发生命周期问题,给出了实现类关联的实用提示。其他高级主题包括模板,C++标准模板库,设计模式,GUI,关系数据库以及XML等。本......一起来看看 《Big C++中文版》 这本书的介绍吧!
