码迷,mamicode.com
首页 >  
搜索关键字:draw ondraw dispatc    ( 2092个结果
turtle练习 分形树最终优化
# 绘制分形树import turtle def draw_brach(brach_length): if brach_length > 5: turtle.pencolor("brown") turtle.pensize(3) turtle.forward(brach_length) turtle ...
分类:其他好文   时间:2019-01-23 10:38:34    阅读次数:259
架构,性能
性能度量: 每秒处理的消息数 架构: https://docs.google.com/drawings/d/1Ui3DddEnYCiAp9L9ZRiUKcrbvb2TxYCqFdJswp3y090/edit?usp=sharing ...
分类:其他好文   时间:2019-01-20 11:54:40    阅读次数:149
微信小程序 canvas 文字自动换行
Page({ drawCanvas: function(ctx) {// 地址 ctx.setFontSize(14) ctx.setFillStyle('#9E7240') ctx.textAlign="center"; const txHash = this.data.info.txHash ?... ...
分类:微信   时间:2019-01-18 12:19:37    阅读次数:364
2018 10-708 (CMU) Probabilistic Graphical Models {Lecture 25} [Spectral Methods]
draw a topic h and then draw independent xfrom multinomial distribution A paper can have several topics, and each topics has different proportions O i ...
分类:其他好文   时间:2019-01-17 14:12:54    阅读次数:278
Java贪吃蛇小游戏
一、团队课程设计博客链接 二、个人负责模块或任务说明 1)游戏主体 a.主界面 代码分析: ●Game类: (1)蛇移动 (2)添加身体 (3)加速 (4)是否撞墙 (5)蛇身缩短: (6)设置全局字体 (7)游戏结束 b.配置文件 (1)获取配置文件信息 (2)更新配置文件信息 ●Draw类:用于 ...
分类:编程语言   时间:2019-01-17 14:01:08    阅读次数:179
typora画图
https://steemit.com/utopian-io/@jubi/typora-typora-tutorial-exquisite-graph https://support.typora.io/Draw-Diagrams-With-Markdown/ https://www.zybuluo ...
分类:其他好文   时间:2019-01-16 16:40:26    阅读次数:2113
springmvc返回jsp源代码解决办法
url-pattern问题 spring用到forward("/WEB-INF/jsp/*.jsp")而forward当然是又要经过web.xml的映射的,然后,在URL匹配时, <url-pattern> / </url-pattern> 不会匹配到*.jsp,不会进入spring的Dispatc ...
分类:编程语言   时间:2019-01-16 10:20:56    阅读次数:222
c# 生成下部带文字的二维码
话不多说,直接上代码 涉及到的内容如下: 1.文件系统,输入输出。 2.合并图片,Draw。 因刚刚使用c#编程不久,欢迎各位同行指正交流。参考相关文章较多,不在此一 一列举。 ...
分类:Windows程序   时间:2019-01-15 10:46:42    阅读次数:467
Flutter - 给App增加启动屏幕(Splash Screen)并且设置背景颜色
先看一下效果图,启动图最好设置为png格式的透明图,以防图片填充不满的时候背景图会非常的煞白(Flutter 默认背景色是白色)。 打开android\app\src\main\res\drawable\launch_background.xml, 将<item>里面的内容反注释,并且准备一张图片分 ...
分类:移动开发   时间:2019-01-13 00:18:55    阅读次数:2050
Bad Habits of UI/UX Designers (交互设计师的那些坏习惯)
From creating imaginary users to forgetting about budgets, the design process has some flaws. Recently, I was pulled into a UI/UX meeting with a big r ...
分类:其他好文   时间:2019-01-12 00:20:38    阅读次数:133
2092条   上一页 1 ... 40 41 42 43 44 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!