Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3bc12c3d
authored
Sep 11, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Final fix for #629
parent
f82e4ce8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
10 deletions
+70
-10
dev/raphael.core.js
+35
-5
raphael-min.js
+0
-0
raphael.js
+35
-5
No files found.
dev/raphael.core.js
View file @
3bc12c3d
...
@@ -2043,6 +2043,8 @@
...
@@ -2043,6 +2043,8 @@
pp
[
i
].
shift
();
pp
[
i
].
shift
();
var
pi
=
pp
[
i
];
var
pi
=
pp
[
i
];
while
(
pi
.
length
)
{
while
(
pi
.
length
)
{
pcoms1
[
i
]
=
"A"
;
// if created multiple C:s, their original seg is saved
p2
&&
(
pcoms2
[
i
]
=
"A"
);
// the same as above
pp
.
splice
(
i
++
,
0
,
[
"C"
][
concat
](
pi
.
splice
(
0
,
6
)));
pp
.
splice
(
i
++
,
0
,
[
"C"
][
concat
](
pi
.
splice
(
0
,
6
)));
}
}
pp
.
splice
(
i
,
1
);
pp
.
splice
(
i
,
1
);
...
@@ -2058,12 +2060,40 @@
...
@@ -2058,12 +2060,40 @@
a1
.
y
=
path1
[
i
][
2
];
a1
.
y
=
path1
[
i
][
2
];
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
}
}
};
},
pcoms1
=
[],
// path commands of original path p
pcoms2
=
[],
// path commands of original path p2
pfirst
=
""
,
// temporary holder for original path command
pcom
=
""
;
// holder for previous path command of original path
for
(
var
i
=
0
,
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
i
<
ii
;
i
++
)
{
p
[
i
]
=
processPath
(
p
[
i
],
attrs
);
p
[
i
]
&&
(
pfirst
=
p
[
i
][
0
]);
// save current path command
fixArc
(
p
,
i
);
p2
&&
(
p2
[
i
]
=
processPath
(
p2
[
i
],
attrs2
));
if
(
pfirst
!=
"C"
)
// C is not saved yet, because it may be result of conversion
p2
&&
fixArc
(
p2
,
i
);
{
pcoms1
[
i
]
=
pfirst
;
// Save current path command
i
&&
(
pcom
=
pcoms1
[
i
-
1
]);
// Get previous path command pcom
}
p
[
i
]
=
processPath
(
p
[
i
],
attrs
,
pcom
);
// Previous path command is inputted to processPath
if
(
pcoms1
[
i
]
!=
"A"
&&
pfirst
==
"C"
)
pcoms1
[
i
]
=
"C"
;
// A is the only command
// which may produce multiple C:s
// so we have to make sure that C is also C in original path
fixArc
(
p
,
i
);
// fixArc adds also the right amount of A:s to pcoms1
if
(
p2
)
{
// the same procedures is done to p2
p2
[
i
]
&&
(
pfirst
=
p2
[
i
][
0
]);
if
(
pfirst
!=
"C"
)
{
pcoms2
[
i
]
=
pfirst
;
i
&&
(
pcom
=
pcoms2
[
i
-
1
]);
}
p2
[
i
]
=
processPath
(
p2
[
i
],
attrs2
,
pcom
);
if
(
pcoms2
[
i
]
!=
"A"
&&
pfirst
==
"C"
)
pcoms2
[
i
]
=
"C"
;
fixArc
(
p2
,
i
);
}
fixM
(
p
,
p2
,
attrs
,
attrs2
,
i
);
fixM
(
p
,
p2
,
attrs
,
attrs2
,
i
);
fixM
(
p2
,
p
,
attrs2
,
attrs
,
i
);
fixM
(
p2
,
p
,
attrs2
,
attrs
,
i
);
var
seg
=
p
[
i
],
var
seg
=
p
[
i
],
...
...
raphael-min.js
View file @
3bc12c3d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
3bc12c3d
...
@@ -2422,6 +2422,8 @@
...
@@ -2422,6 +2422,8 @@
pp
[
i
].
shift
();
pp
[
i
].
shift
();
var
pi
=
pp
[
i
];
var
pi
=
pp
[
i
];
while
(
pi
.
length
)
{
while
(
pi
.
length
)
{
pcoms1
[
i
]
=
"A"
;
// if created multiple C:s, their original seg is saved
p2
&&
(
pcoms2
[
i
]
=
"A"
);
// the same as above
pp
.
splice
(
i
++
,
0
,
[
"C"
][
concat
](
pi
.
splice
(
0
,
6
)));
pp
.
splice
(
i
++
,
0
,
[
"C"
][
concat
](
pi
.
splice
(
0
,
6
)));
}
}
pp
.
splice
(
i
,
1
);
pp
.
splice
(
i
,
1
);
...
@@ -2437,12 +2439,40 @@
...
@@ -2437,12 +2439,40 @@
a1
.
y
=
path1
[
i
][
2
];
a1
.
y
=
path1
[
i
][
2
];
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
}
}
};
},
pcoms1
=
[],
// path commands of original path p
pcoms2
=
[],
// path commands of original path p2
pfirst
=
""
,
// temporary holder for original path command
pcom
=
""
;
// holder for previous path command of original path
for
(
var
i
=
0
,
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
mmax
(
p
.
length
,
p2
&&
p2
.
length
||
0
);
i
<
ii
;
i
++
)
{
p
[
i
]
=
processPath
(
p
[
i
],
attrs
);
p
[
i
]
&&
(
pfirst
=
p
[
i
][
0
]);
// save current path command
fixArc
(
p
,
i
);
p2
&&
(
p2
[
i
]
=
processPath
(
p2
[
i
],
attrs2
));
if
(
pfirst
!=
"C"
)
// C is not saved yet, because it may be result of conversion
p2
&&
fixArc
(
p2
,
i
);
{
pcoms1
[
i
]
=
pfirst
;
// Save current path command
i
&&
(
pcom
=
pcoms1
[
i
-
1
]);
// Get previous path command pcom
}
p
[
i
]
=
processPath
(
p
[
i
],
attrs
,
pcom
);
// Previous path command is inputted to processPath
if
(
pcoms1
[
i
]
!=
"A"
&&
pfirst
==
"C"
)
pcoms1
[
i
]
=
"C"
;
// A is the only command
// which may produce multiple C:s
// so we have to make sure that C is also C in original path
fixArc
(
p
,
i
);
// fixArc adds also the right amount of A:s to pcoms1
if
(
p2
)
{
// the same procedures is done to p2
p2
[
i
]
&&
(
pfirst
=
p2
[
i
][
0
]);
if
(
pfirst
!=
"C"
)
{
pcoms2
[
i
]
=
pfirst
;
i
&&
(
pcom
=
pcoms2
[
i
-
1
]);
}
p2
[
i
]
=
processPath
(
p2
[
i
],
attrs2
,
pcom
);
if
(
pcoms2
[
i
]
!=
"A"
&&
pfirst
==
"C"
)
pcoms2
[
i
]
=
"C"
;
fixArc
(
p2
,
i
);
}
fixM
(
p
,
p2
,
attrs
,
attrs2
,
i
);
fixM
(
p
,
p2
,
attrs
,
attrs2
,
i
);
fixM
(
p2
,
p
,
attrs2
,
attrs
,
i
);
fixM
(
p2
,
p
,
attrs2
,
attrs
,
i
);
var
seg
=
p
[
i
],
var
seg
=
p
[
i
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment