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
ad15a1c9
authored
Jun 02, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raphael.path2curve does not honor original shape. By @timo22345
parent
5ae20867
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
8 deletions
+32
-8
raphael-min.js
+0
-0
raphael.core.js
+16
-4
raphael.js
+16
-4
No files found.
raphael-min.js
View file @
ad15a1c9
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
ad15a1c9
...
...
@@ -1997,13 +1997,25 @@
path
=
[
"C"
][
concat
](
a2c
[
apply
](
0
,
[
d
.
x
,
d
.
y
][
concat
](
path
.
slice
(
1
))));
break
;
case
"S"
:
nx
=
d
.
x
+
(
d
.
x
-
(
d
.
bx
||
d
.
x
));
ny
=
d
.
y
+
(
d
.
y
-
(
d
.
by
||
d
.
y
));
if
(
pcom
==
"C"
||
pcom
==
"S"
)
{
// In "S" case we have to take into account, if the previous command is C/S.
nx
=
d
.
x
*
2
-
d
.
bx
;
// And reflect the previous
ny
=
d
.
y
*
2
-
d
.
by
;
// command's control point relative to the current point.
}
else
{
// or some else or nothing
nx
=
d
.
x
;
ny
=
d
.
y
;
}
path
=
[
"C"
,
nx
,
ny
][
concat
](
path
.
slice
(
1
));
break
;
case
"T"
:
d
.
qx
=
d
.
x
+
(
d
.
x
-
(
d
.
qx
||
d
.
x
));
d
.
qy
=
d
.
y
+
(
d
.
y
-
(
d
.
qy
||
d
.
y
));
if
(
pcom
==
"Q"
||
pcom
==
"T"
)
{
// In "T" case we have to take into account, if the previous command is Q/T.
d
.
qx
=
d
.
x
*
2
-
d
.
qx
;
// And make a reflection similar
d
.
qy
=
d
.
y
*
2
-
d
.
qy
;
// to case "S".
}
else
{
// or something else or nothing
d
.
qx
=
d
.
x
;
d
.
qy
=
d
.
y
;
}
path
=
[
"C"
][
concat
](
q2c
(
d
.
x
,
d
.
y
,
d
.
qx
,
d
.
qy
,
path
[
1
],
path
[
2
]));
break
;
case
"Q"
:
...
...
raphael.js
View file @
ad15a1c9
...
...
@@ -2376,13 +2376,25 @@
path
=
[
"C"
][
concat
](
a2c
[
apply
](
0
,
[
d
.
x
,
d
.
y
][
concat
](
path
.
slice
(
1
))));
break
;
case
"S"
:
nx
=
d
.
x
+
(
d
.
x
-
(
d
.
bx
||
d
.
x
));
ny
=
d
.
y
+
(
d
.
y
-
(
d
.
by
||
d
.
y
));
if
(
pcom
==
"C"
||
pcom
==
"S"
)
{
// In "S" case we have to take into account, if the previous command is C/S.
nx
=
d
.
x
*
2
-
d
.
bx
;
// And reflect the previous
ny
=
d
.
y
*
2
-
d
.
by
;
// command's control point relative to the current point.
}
else
{
// or some else or nothing
nx
=
d
.
x
;
ny
=
d
.
y
;
}
path
=
[
"C"
,
nx
,
ny
][
concat
](
path
.
slice
(
1
));
break
;
case
"T"
:
d
.
qx
=
d
.
x
+
(
d
.
x
-
(
d
.
qx
||
d
.
x
));
d
.
qy
=
d
.
y
+
(
d
.
y
-
(
d
.
qy
||
d
.
y
));
if
(
pcom
==
"Q"
||
pcom
==
"T"
)
{
// In "T" case we have to take into account, if the previous command is Q/T.
d
.
qx
=
d
.
x
*
2
-
d
.
qx
;
// And make a reflection similar
d
.
qy
=
d
.
y
*
2
-
d
.
qy
;
// to case "S".
}
else
{
// or something else or nothing
d
.
qx
=
d
.
x
;
d
.
qy
=
d
.
y
;
}
path
=
[
"C"
][
concat
](
q2c
(
d
.
x
,
d
.
y
,
d
.
qx
,
d
.
qy
,
path
[
1
],
path
[
2
]));
break
;
case
"Q"
:
...
...
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