1.理解painter是个过程接受frame参数,即在frame中画painter 2.frame-coord-map 中将一个单位正方形中的点映射到一个新框架中 3.transform-painter 则是将painter映射到一个新框架中返回的也是一个过程,也可以理解为返回一个painter ...
分类:
其他好文 时间:
2017-02-22 22:34:52
阅读次数:
281
开发目的:实现象棋人机对战简单AI,网络对战,移植到android中。 开发平台:windows10 + Qt5.4 for android 开发语言:C++ 开发过程:1.棋盘绘制; 方法一:重写 paintEvent(QPaintEvent *) 虚函数,调用QPainter painter(t ...
分类:
其他好文 时间:
2017-02-02 16:29:19
阅读次数:
200
题目: Squares and rectangles fascinated the famous Dutch painter Piet Mondriaan. One night, after producing the drawings in his 'toilet series' (where h ...
分类:
其他好文 时间:
2017-01-19 07:46:20
阅读次数:
306
Problem Description Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pictures in his sma ...
分类:
其他好文 时间:
2016-12-30 02:02:07
阅读次数:
196
在qt中提供了三种渐变方式,分别是线性渐变,圆形渐变和圆锥渐变。如果能熟练应用它们,就能设计出炫目的填充效果。 线性渐变: 1.更改函数如下: void Dialog::paintEvent(QPaintEvent *){ QPainter painter(this); QLinearGradien ...
分类:
其他好文 时间:
2016-12-10 06:53:41
阅读次数:
180
Eddy's picture Problem Description Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pict ...
分类:
其他好文 时间:
2016-12-07 22:55:13
阅读次数:
330
1 准备好打印设备 QPrinter 2 将 绘制 链接到 打印设备上 QPainter 3 绘制过程中 绘制文字、绘制line 、绘制pixmap 、绘制QRect 注意: 1 drawPixmap 时 使用painter.scale(sx , sy); 拉伸图像适应pdf窗体时,一定要使用之后立 ...
分类:
其他好文 时间:
2016-10-25 13:54:59
阅读次数:
157
String painter Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3639 Accepted Submission(s): 1697 ...
分类:
其他好文 时间:
2016-10-09 07:18:19
阅读次数:
252
题目链接:hdu_2476_String painter 题意: 有a,b两字符串,现在你有一个刷子,每次可以任选一个区间,使这个区间变成你想要的字符,现在让你将a变成b,问最少刷多少次 题解: 考虑区间dp[i][j],表示从第i到第j最少需要刷的次数。这里要先算从空串到b的dp,然后根据这个来推 ...
分类:
其他好文 时间:
2016-10-03 12:51:32
阅读次数:
135