- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我试图通过线加入每个圆圈,我的最终代码做到了,但它有一些对齐问题,比如:
我用红色圆圈标记了一些连接部分。如您所见,它们没有正确对齐(线没有从圆心出来)。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<canvas id="graph" width="982" height="636" style="width:491px">
Tarayıcınız Canvas Desteklemiyor !
</canvas>
<script type="text/javascript">
var i = 0;
var lastCoord = new Array();
var c=document.getElementById("graph");
var cxt=c.getContext("2d");
function getParam(name)
{
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + name + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
if(results == null)
return "";
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}
function drawCircleAndLine(x, y)
{
cxt.fillStyle="#000000";
cxt.beginPath();
if(i == 0) cxt.arc(x, y, 9, 0, Math.PI*2, false);
else cxt.arc(x, y, 6, 0, Math.PI*2, false);
cxt.closePath();
cxt.fill();
if(i % 4 != 0)
{
cxt.lineWidth = 8;
cxt.lineTo(lastCoord[0], lastCoord[1]);
cxt.stroke();
}
else {
cxt.moveTo(lastCoord[0], lastCoord[1]);
cxt.lineTo(lastCoord[0], lastCoord[1]);
cxt.stroke();
}
lastCoord = [x, y];
i++;
}
var coords = {
0 : {
0 : {
"0" : { "x" : 50, "y" : 580},
"1" : { "x" : 50, "y" : 540},
"2" : { "x" : 50, "y" : 472},
"3" : { "x" : 50, "y" : 430},
"4" : { "x" : 50, "y" : 400},
"5" : { "x" : 50, "y" : 382},
"6" : { "x" : 50, "y" : 340},
"7" : { "x" : 50, "y" : 300},
"8" : { "x" : 50, "y" : 250},
"9" : { "x" : 50, "y" : 205},
"10" : { "x" : 50, "y" : 160},
"12" : { "x" : 50, "y" : 138},
"14" : { "x" : 50, "y" : 110},
"15" : { "x" : 50, "y" : 85},
"16" : { "x" : 50, "y" : 65},
"20" : { "x" : 50, "y" : 40}
},
1 : {
"0" : { "x" : 98, "y" : 555},
"1" : { "x" : 98, "y" : 493},
"2" : { "x" : 98, "y" : 451},
..............
"-4" : { "x" : 926, "y" : 356},
"-5" : { "x" : 926, "y" : 375},
"-6" : { "x" : 926, "y" : 398},
"-7" : { "x" : 926, "y" : 428},
"-8" : { "x" : 926, "y" : 452},
"-9" : { "x" : 926, "y" : 476},
"-10" : { "x" : 926, "y" : 500},
"-11" : { "x" : 926, "y" : 530},
"-12" : { "x" : 926, "y" : 550},
"-16" : { "x" : 926, "y" : 588}
}
}
};
var bg = new Image();
bg.src = "images/disc_graph_empty.jpg";
bg.onload = function() {
cxt.drawImage(bg, 0, 0);
try
{
drawCircleAndLine(coords[0][0][getParam('d1')]["x"], coords[0][0][getParam('d1')]["y"]);
drawCircleAndLine(coords[0][2][getParam('d2')]["x"], coords[0][3][getParam('d2')]["y"]);
drawCircleAndLine(coords[0][2][getParam('d3')]["x"], coords[0][2][getParam('d3')]["y"]);
drawCircleAndLine(coords[0][3][getParam('d4')]["x"], coords[0][3][getParam('d4')]["y"]);
drawCircleAndLine(coords[1][0][getParam('d5')]["x"], coords[1][0][getParam('d5')]["y"]);
drawCircleAndLine(coords[1][4][getParam('d6')]["x"], coords[1][5][getParam('d6')]["y"]);
drawCircleAndLine(coords[1][2][getParam('d7')]["x"], coords[1][2][getParam('d7')]["y"]);
drawCircleAndLine(coords[1][3][getParam('d8')]["x"], coords[1][3][getParam('d8')]["y"]);
drawCircleAndLine(coords[2][0][getParam('d9')]["x"], coords[2][0][getParam('d9')]["y"]);
drawCircleAndLine(coords[2][6][getParam('d10')]["x"], coords[2][7][getParam('d10')]["y"]);
drawCircleAndLine(coords[2][2][getParam('d11')]["x"], coords[2][2][getParam('d11')]["y"]);
drawCircleAndLine(coords[2][3][getParam('d12')]["x"], coords[2][3][getParam('d12')]["y"]);
}
catch(err)
{
alert('Hata Oluştu !\nBazı noktalar yerleşmemiş olabilir.\n\n\n' + err);
}
}
</script>
</body>
</html>
最佳答案
这是对您的代码的主要简化,应该指出问题所在。我将填充设为浅蓝色并将笔划宽度变小,以便您可以看到问题所在。我只是调用了你的函数两次:
drawCircleAndLine(100,100);
drawCircleAndLine(100,200);
您会期望一条直线向下,但显然它不是直线!看这里:
这是怎么回事:
第一次,只绘制了一个圆心为 100,100 的圆。这个不错
第二次,在 200,200 处绘制了一个圆,然后该点的路径终点是圆的最右边部分(大约为 106,200)。然后,您将绘制一条从 (106,200) 到 (100,100) 的直线。
为了解决这个问题,您可以在 lineTo
之前添加一个命令,一个 moveTo(x, y)
,这样您就可以从正确的位置开始该行。看这里:
关于html - 通过 HTML5 Canvas 加入圆到线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7341630/
我想对 JOIN 进行特定的排序 SELECT * FROM (lives_in as t1 NATURAL JOIN preferences p1) l1 JOIN (lives_in t2 NAT
我正在努力解决一个查询。并想知道是否有人可以提供帮助。 我有一个标签表(服务请求票)和序列号表 从我的标签中我正在这样做 Select * from tag where tag.created BET
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
我有两个表 tbl_user 和 tbl_lastchangepassword,如下所示 表 tbl_user id| name --------- 1 | user1 2 | user2 3 |
我有下一个问题 SELECT i.*, gu.* vs.* FROM common.global_users gu LEFT JOIN common.global_users_perms gup ON
我有一个电影表和一个投票表。用户为他们喜欢的电影投票。我需要显示按电影总票数降序排列的电影列表。我现在所拥有的有点作品。唯一的问题是它不显示 0 票的电影。 SELECT m.name, m.imdb
我有一个由这样的表组成的 mySql 数据库: 我如何(如果可能的话)使用 JOINS 从名称/周期表中获取结果?简单来说,它是如何工作的?我向菜鸟问题道歉。我对此很陌生。任何帮助将不胜感激。 最佳答
我需要查询单元先决条件的自引用关系。 我知道您需要使用两个联接,我是否选择我的列然后将其联接到自身? SELECT u.unit_code, u.name + ' is a prerequisi
我有两个实体,用户和友谊,它们看起来像: public class User { public int UserId { get; set; } (..
假设我有两个表: Table A ProdID | PartNumber | Data... 1 | ABC-a | "Data A" 2 | (null) |
说我有这个数据, (df <- data.frame( col1 = c('My','Your','His','Thir'), col2 = c('Cat','Dog','Fish','Dog')))
我有两个这样的数组,实际上这是从两个不同的服务器检索的 mysql 数据: $array1 = array ( 0 => array ( 'id' => 1, 'n
我的数据库中有以下表格 CREATE TABLE [author_details] ( [_id] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, [name
我正在努力使用一个相当简单的 sql select 语句的 join/where 子句。 我正在尝试从 tb1 中检索产品信息列表,其中 where 条件位于 tbl2 中,但这必须由三个不同的列连接
我正在寻找以下功能: Applicative f => f (f a) -> f a Hoogle给我看join : >:t join join :: Monad m => m (m a) -> m
我有两个“表”,分别是 USER 和 CONGE。在表“CONGE”中,我插入了用户的 ID。但是我不知道如何根据用户的id显示用户的休假。 我想根据id发布“Congé”。 { "conge"
我们有一个具有(简化)结构的文档,如Elasticsearch所示: { _id: ..., patientId: 4711, text: "blue" } { _id: ..., patientId
这两个sql语句有什么区别 a) 从 T1,T2 中选择 *,其中 T1.A=T2.A ; b) 从 T1,T2 中选择 *,其中 T2.A=T1.A ; 在这两种情况下我得到相同的输出,这两种语句之
我想做一个简单的连接,只是比较两个表中的 ID.. 我有我的组表,包含; 身份证 姓名 等.. 我的 GroupMap 表包含; 身份证 组号 元素编号 我的查询采用 GroupMap.ItemID
所以我有一组主要数据,如下所示: value_num code value_letter 1 CDX A 2 DEF B
我是一名优秀的程序员,十分优秀!