码迷,mamicode.com
首页 >  
搜索关键字:vml fill    ( 3389个结果
D3平移和缩放后的点击坐标(D3 click coordinates after pan and zoom)
我使用D3库来创建绘图应用程序。 我需要在用户单击的坐标上绘制对象(为了简单起见)。问题是当用户使用平移&缩放和移动视口。然后对象是错误的位置的地方(我想问题是事件坐标是相对于svg元素而不是g,所以他们是计算没有适当的转换)。 < pre> $('svg')。on('click',function ...
分类:其他好文   时间:2020-03-12 23:16:58    阅读次数:76
leetcode 3. Longest Substring Without Repeating Characters (java)
class Solution { public int lengthOfLongestSubstring(String s) { int[] dict = new int[256]; Arrays.fill(dict, -1); int maxLen = 0, start = -1; for (in ...
分类:编程语言   时间:2020-03-12 14:37:50    阅读次数:71
国际象棋盘
import turtle turtle.speed(30) turtle.penup() off = True for y in range(-40, 30 + 1, 10): for x in range(-40, 30 + 1, 10): if off: turtle.goto(x, y) t ...
分类:其他好文   时间:2020-03-12 11:26:51    阅读次数:53
1105 Spiral Matrix (25分)
1105 Spiral Matrix (25分) This time your job is to fill a sequence of N positive integers into a spiral matrix in non increasing order. A spiral matrix ...
分类:其他好文   时间:2020-03-11 23:40:07    阅读次数:75
python第一周
一、五角星的绘制 import turtle as t t.penup() t.fd(-150) t.pendown() t.fillcolor("red") t.begin_fill() t.pensize(3) for i in range(5): t.fd(300) t.right(144) ...
分类:编程语言   时间:2020-03-11 19:41:11    阅读次数:81
绘制叠加三角形
1 import turtle 2 turtle.pensize(10) 3 turtle.color('purple','pink') 4 turtle.begin_fill() 5 6 turtle.forward(100) 7 turtle.right(120) 8 turtle.forwar ...
分类:其他好文   时间:2020-03-11 15:33:40    阅读次数:61
绘制五角星
1 import turtle 2 3 turtle.color('black','red') 4 turtle.pensize(10) 5 turtle.begin_fill() 6 for i in range(5): 7 turtle.fd(200) 8 turtle.rt(144) 9 10 ...
分类:其他好文   时间:2020-03-11 11:06:53    阅读次数:68
帮助系统
1、help 格式:help +函数(类)名 2、helpwin\helpdesk 功能:调用联机帮助窗口 3、lookfor 特点:当不知道具体函数名时,可采用 lookfor+关键字 搜索相关函数 4、Tab 格式:命令前几个字母+Tab键 eg: 输入rep,然后按下Tab键 5、doc 格式 ...
分类:其他好文   时间:2020-03-11 10:56:37    阅读次数:67
for循环与int,float,str数据类型的使用
一、定义 for循环:循环就是重复做某件事,for循环是python提供第二种循环机制,理论上for循环能做的事情,while循环都可以做。 目的:之所以要有for循环,是因为for循环在循环取值(遍历取值)比while循环更简洁。 二、for循环的使用 语法: for 变量名 in 可迭代对象: ...
分类:其他好文   时间:2020-03-11 01:16:55    阅读次数:229
六角形的绘制
from turtle import *width(5)pencolor("green")fillcolor("violet")begin_fill()while True: forward(100) right(-60) forward(100) right(120) if abs(pos()) ...
分类:其他好文   时间:2020-03-10 23:34:57    阅读次数:88
3389条   上一页 1 ... 22 23 24 25 26 ... 339 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!