??
1 draw绘图
头文件
T19Draw.h
#ifndef
__T19Draw_H__
#define
__T19Draw_H__
#include
"cocos2d.h"
#include
"TBack.h"
USING_NS_CC;
class
T...
分类:
其他好文 时间:
2014-10-30 11:46:06
阅读次数:
270
Container With Most WaterGiven n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are draw...
分类:
其他好文 时间:
2014-10-28 19:30:59
阅读次数:
163
//>第一章节整理复习//c++编程技术要点/*//1、虚函数及多态的实现//演示多态技术#include using namespace std;void Demo();int main(){Demo();getchar();return 0;}class Graphic{public:virtual void Draw();}; //END CLASS DEFINITION Graphicvo...
分类:
编程语言 时间:
2014-10-28 12:13:36
阅读次数:
336
当自定义View的时候,可以利用Canvas给View添加一些动画效果。下面的例子,是在屏幕上绘制一个红色的小方块,这个小方块会在屏幕上面“乱跳”。知识点使用到的知识点:(1) 在View的子类的draw()中调用invalidate(),可以让View对象一直保持重绘状态,从而可以使Canvas一...
分类:
移动开发 时间:
2014-10-27 00:19:11
阅读次数:
1155
用range[0,8)的列表表示牌,这些数字要出现两次。我们建议你通过连接两个range[0,8)的列表来创建这个list.利用Docs来安排列表串联操作写一个draw handler啥样的draw handler呢?用for循环来迭代Memory deck,并用draw_text在画布上画出表示每...
分类:
其他好文 时间:
2014-10-26 00:15:59
阅读次数:
205
不管你是使用2D 还是WebGL,任何用过的人都知道很难调试,使用Canvas通常需要长长的难以跟踪的调用列表function draw() { context.clearRect(0, 0, 258, 258); context.fillStyle = "#EEEEEE"; context....
分类:
其他好文 时间:
2014-10-24 16:04:11
阅读次数:
218
The problem. Given a set of N distinct points in the plane, draw every (maximal) line segment that connects a subset of 4 or more of the points.Point ...
分类:
其他好文 时间:
2014-10-21 22:54:39
阅读次数:
564
专门为了绘制BZOJ 1002的图做的= = draw //nothing here draw { "size":300} 不过不是傻瓜式的呢= =要用还是要花费些时间研究的,效果绝对赞啦~~比PowerPoint画出来的好多啦>_<坐标系转换坑死爹啊= . ...
分类:
其他好文 时间:
2014-10-19 21:11:13
阅读次数:
204
先来介绍几个画矩形的函数:DrawFocusRect():画一个焦点矩形;Rectangle():用当前选定的画笔描绘矩形,并用当前选定的画刷填充;DrawEdge():用指定的样式描绘一个矩形的边框;RoundRect():用当前选定的画笔画一个圆角矩形,并用当前选定的画刷填充。今天用的是Draw...
函数名: imagesize
功 能: 返回保存位图像所需的字节数
用 法: unsigned far imagesize(int left, int top, int right, int bottom);
程序例:
#include
#include
#include
#include
#define ARROW_SIZE 10
void draw_arrow...
分类:
编程语言 时间:
2014-10-19 07:59:43
阅读次数:
179