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
7eabbe5d
authored
Jul 26, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Splitting fixes
parent
59524ab7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
raphael-min.js
+0
-0
raphael.js
+7
-2
No files found.
raphael-min.js
View file @
7eabbe5d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
7eabbe5d
...
@@ -3895,9 +3895,14 @@
...
@@ -3895,9 +3895,14 @@
var
prev
=
i
&&
font
.
glyphs
[
letters
[
i
-
1
]]
||
{},
var
prev
=
i
&&
font
.
glyphs
[
letters
[
i
-
1
]]
||
{},
curr
=
font
.
glyphs
[
letters
[
i
]];
curr
=
font
.
glyphs
[
letters
[
i
]];
shift
+=
i
?
(
prev
.
w
||
font
.
w
)
+
(
prev
.
k
&&
prev
.
k
[
letters
[
i
]]
||
0
)
+
(
font
.
w
*
letter_spacing
)
:
0
;
shift
+=
i
?
(
prev
.
w
||
font
.
w
)
+
(
prev
.
k
&&
prev
.
k
[
letters
[
i
]]
||
0
)
+
(
font
.
w
*
letter_spacing
)
:
0
;
curr
&&
curr
.
d
&&
out
.
push
(
this
.
path
(
curr
.
d
).
attr
({
fill
:
"#000"
,
stroke
:
"none"
,
transform
:
[[
"t"
,
shift
,
0
]]}));
curr
&&
curr
.
d
&&
out
.
push
(
this
.
path
(
curr
.
d
).
attr
({
fill
:
"#000"
,
stroke
:
"none"
,
transform
:
[[
"t"
,
shift
*
scale
,
0
]]
}));
}
}
out
.
scale
(
scale
,
scale
,
top
,
height
).
translate
(
x
-
top
,
y
-
height
);
out
.
transform
([
"...s"
,
scale
,
scale
,
top
,
height
,
"t"
,
(
x
-
top
)
/
scale
,
(
y
-
height
)
/
scale
]);
// out.scale(scale, scale, top, height).translate(x - top, y - height);
}
}
return
out
;
return
out
;
};
};
...
...
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