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
523c811e
authored
Jul 02, 2010
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replacing x + E pattern to Str(x)
parent
1c765c66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
32 deletions
+33
-32
raphael-min.js
+0
-0
raphael.js
+33
-32
No files found.
raphael-min.js
View file @
523c811e
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
523c811e
...
@@ -37,6 +37,7 @@ Raphael = (function () {
...
@@ -37,6 +37,7 @@ Raphael = (function () {
supportsTouch
=
"createTouch"
in
doc
,
supportsTouch
=
"createTouch"
in
doc
,
E
=
""
,
E
=
""
,
S
=
" "
,
S
=
" "
,
Str
=
String
,
split
=
"split"
,
split
=
"split"
,
events
=
"click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend orientationchange touchcancel gesturestart gesturechange gestureend"
[
split
](
S
),
events
=
"click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend orientationchange touchcancel gesturestart gesturechange gestureend"
[
split
](
S
),
touchMap
=
{
touchMap
=
{
...
@@ -104,7 +105,7 @@ Raphael = (function () {
...
@@ -104,7 +105,7 @@ Raphael = (function () {
var
trim
=
/^
\s
+|
\s
+$/g
;
var
trim
=
/^
\s
+|
\s
+$/g
;
toHex
=
cacher
(
function
(
color
)
{
toHex
=
cacher
(
function
(
color
)
{
var
bod
;
var
bod
;
color
=
(
color
+
E
)[
rp
](
trim
,
E
);
color
=
Str
(
color
)[
rp
](
trim
,
E
);
try
{
try
{
var
docum
=
new
win
.
ActiveXObject
(
"htmlfile"
);
var
docum
=
new
win
.
ActiveXObject
(
"htmlfile"
);
docum
.
write
(
"<body>"
);
docum
.
write
(
"<body>"
);
...
@@ -243,7 +244,7 @@ Raphael = (function () {
...
@@ -243,7 +244,7 @@ Raphael = (function () {
}
}
R
.
getRGB
=
cacher
(
function
(
colour
)
{
R
.
getRGB
=
cacher
(
function
(
colour
)
{
if
(
!
colour
||
!!
((
colour
=
colour
+
E
).
indexOf
(
"-"
)
+
1
))
{
if
(
!
colour
||
!!
((
colour
=
Str
(
colour
)
).
indexOf
(
"-"
)
+
1
))
{
return
{
r
:
-
1
,
g
:
-
1
,
b
:
-
1
,
hex
:
"none"
,
error
:
1
};
return
{
r
:
-
1
,
g
:
-
1
,
b
:
-
1
,
hex
:
"none"
,
error
:
1
};
}
}
if
(
colour
==
"none"
)
{
if
(
colour
==
"none"
)
{
...
@@ -336,7 +337,7 @@ Raphael = (function () {
...
@@ -336,7 +337,7 @@ Raphael = (function () {
data
=
pathClone
(
pathString
);
data
=
pathClone
(
pathString
);
}
}
if
(
!
data
[
length
])
{
if
(
!
data
[
length
])
{
(
pathString
+
E
)[
rp
](
pathCommand
,
function
(
a
,
b
,
c
)
{
Str
(
pathString
)[
rp
](
pathCommand
,
function
(
a
,
b
,
c
)
{
var
params
=
[],
var
params
=
[],
name
=
lowerCase
.
call
(
b
);
name
=
lowerCase
.
call
(
b
);
c
[
rp
](
pathValues
,
function
(
a
,
b
)
{
c
[
rp
](
pathValues
,
function
(
a
,
b
)
{
...
@@ -942,7 +943,7 @@ Raphael = (function () {
...
@@ -942,7 +943,7 @@ Raphael = (function () {
};
};
},
},
radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
;
radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
;
R
.
pathToRelative
=
pathToRelative
;
// SVG
// SVG
if
(
R
.
svg
)
{
if
(
R
.
svg
)
{
Paper
[
proto
].
svgns
=
"http://www.w3.org/2000/svg"
;
Paper
[
proto
].
svgns
=
"http://www.w3.org/2000/svg"
;
...
@@ -954,7 +955,7 @@ Raphael = (function () {
...
@@ -954,7 +955,7 @@ Raphael = (function () {
if
(
attr
)
{
if
(
attr
)
{
for
(
var
key
in
attr
)
{
for
(
var
key
in
attr
)
{
if
(
attr
[
has
](
key
))
{
if
(
attr
[
has
](
key
))
{
el
[
setAttribute
](
key
,
attr
[
key
]
+
E
);
el
[
setAttribute
](
key
,
Str
(
attr
[
key
])
);
}
}
}
}
}
else
{
}
else
{
...
@@ -978,7 +979,7 @@ Raphael = (function () {
...
@@ -978,7 +979,7 @@ Raphael = (function () {
var
type
=
"linear"
,
var
type
=
"linear"
,
fx
=
.
5
,
fy
=
.
5
,
fx
=
.
5
,
fy
=
.
5
,
s
=
o
.
style
;
s
=
o
.
style
;
gradient
=
(
gradient
+
E
)[
rp
](
radial_gradient
,
function
(
all
,
_fx
,
_fy
)
{
gradient
=
Str
(
gradient
)[
rp
](
radial_gradient
,
function
(
all
,
_fx
,
_fy
)
{
type
=
"radial"
;
type
=
"radial"
;
if
(
_fx
&&
_fy
)
{
if
(
_fx
&&
_fy
)
{
fx
=
toFloat
(
_fx
);
fx
=
toFloat
(
_fx
);
...
@@ -1077,7 +1078,7 @@ Raphael = (function () {
...
@@ -1077,7 +1078,7 @@ Raphael = (function () {
}
}
};
};
params
[
has
](
"rotation"
)
&&
(
rot
=
params
.
rotation
);
params
[
has
](
"rotation"
)
&&
(
rot
=
params
.
rotation
);
var
rotxy
=
(
rot
+
E
)[
split
](
separator
);
var
rotxy
=
Str
(
rot
)[
split
](
separator
);
if
(
!
(
rotxy
.
length
-
1
))
{
if
(
!
(
rotxy
.
length
-
1
))
{
rotxy
=
null
;
rotxy
=
null
;
}
else
{
}
else
{
...
@@ -1115,7 +1116,7 @@ Raphael = (function () {
...
@@ -1115,7 +1116,7 @@ Raphael = (function () {
node
.
style
.
cursor
=
value
;
node
.
style
.
cursor
=
value
;
break
;
break
;
case
"clip-rect"
:
case
"clip-rect"
:
var
rect
=
(
value
+
E
)[
split
](
separator
);
var
rect
=
Str
(
value
)[
split
](
separator
);
if
(
rect
[
length
]
==
4
)
{
if
(
rect
[
length
]
==
4
)
{
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
var
el
=
$
(
"clipPath"
),
var
el
=
$
(
"clipPath"
),
...
@@ -1210,7 +1211,7 @@ Raphael = (function () {
...
@@ -1210,7 +1211,7 @@ Raphael = (function () {
addDashes
(
o
,
value
);
addDashes
(
o
,
value
);
break
;
break
;
case
"translation"
:
case
"translation"
:
var
xy
=
(
value
+
E
)[
split
](
separator
);
var
xy
=
Str
(
value
)[
split
](
separator
);
xy
[
0
]
=
+
xy
[
0
]
||
0
;
xy
[
0
]
=
+
xy
[
0
]
||
0
;
xy
[
1
]
=
+
xy
[
1
]
||
0
;
xy
[
1
]
=
+
xy
[
1
]
||
0
;
if
(
rotxy
)
{
if
(
rotxy
)
{
...
@@ -1220,11 +1221,11 @@ Raphael = (function () {
...
@@ -1220,11 +1221,11 @@ Raphael = (function () {
translate
.
call
(
o
,
xy
[
0
],
xy
[
1
]);
translate
.
call
(
o
,
xy
[
0
],
xy
[
1
]);
break
;
break
;
case
"scale"
:
case
"scale"
:
xy
=
(
value
+
E
)[
split
](
separator
);
xy
=
Str
(
value
)[
split
](
separator
);
o
.
scale
(
+
xy
[
0
]
||
1
,
+
xy
[
1
]
||
+
xy
[
0
]
||
1
,
isNaN
(
toFloat
(
xy
[
2
]))
?
null
:
+
xy
[
2
],
isNaN
(
toFloat
(
xy
[
3
]))
?
null
:
+
xy
[
3
]);
o
.
scale
(
+
xy
[
0
]
||
1
,
+
xy
[
1
]
||
+
xy
[
0
]
||
1
,
isNaN
(
toFloat
(
xy
[
2
]))
?
null
:
+
xy
[
2
],
isNaN
(
toFloat
(
xy
[
3
]))
?
null
:
+
xy
[
3
]);
break
;
break
;
case
fillString
:
case
fillString
:
var
isURL
=
(
value
+
E
).
match
(
ISURL
);
var
isURL
=
Str
(
value
).
match
(
ISURL
);
if
(
isURL
)
{
if
(
isURL
)
{
el
=
$
(
"pattern"
);
el
=
$
(
"pattern"
);
var
ig
=
$
(
"image"
);
var
ig
=
$
(
"image"
);
...
@@ -1261,7 +1262,7 @@ Raphael = (function () {
...
@@ -1261,7 +1262,7 @@ Raphael = (function () {
!
R
.
is
(
attrs
[
"fill-opacity"
],
"undefined"
)
&&
!
R
.
is
(
attrs
[
"fill-opacity"
],
"undefined"
)
&&
R
.
is
(
params
[
"fill-opacity"
],
"undefined"
)
&&
R
.
is
(
params
[
"fill-opacity"
],
"undefined"
)
&&
$
(
node
,
{
"fill-opacity"
:
attrs
[
"fill-opacity"
]});
$
(
node
,
{
"fill-opacity"
:
attrs
[
"fill-opacity"
]});
}
else
if
((({
circle
:
1
,
ellipse
:
1
})[
has
](
o
.
type
)
||
(
value
+
E
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
node
,
value
,
o
.
paper
))
{
}
else
if
((({
circle
:
1
,
ellipse
:
1
})[
has
](
o
.
type
)
||
Str
(
value
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
node
,
value
,
o
.
paper
))
{
attrs
.
gradient
=
value
;
attrs
.
gradient
=
value
;
attrs
.
fill
=
"none"
;
attrs
.
fill
=
"none"
;
break
;
break
;
...
@@ -1273,7 +1274,7 @@ Raphael = (function () {
...
@@ -1273,7 +1274,7 @@ Raphael = (function () {
att
==
"stroke"
&&
clr
[
has
](
"o"
)
&&
$
(
node
,
{
"stroke-opacity"
:
clr
.
o
/
100
});
att
==
"stroke"
&&
clr
[
has
](
"o"
)
&&
$
(
node
,
{
"stroke-opacity"
:
clr
.
o
/
100
});
break
;
break
;
case
"gradient"
:
case
"gradient"
:
(({
circle
:
1
,
ellipse
:
1
})[
has
](
o
.
type
)
||
(
value
+
E
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
node
,
value
,
o
.
paper
);
(({
circle
:
1
,
ellipse
:
1
})[
has
](
o
.
type
)
||
Str
(
value
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
node
,
value
,
o
.
paper
);
break
;
break
;
case
"opacity"
:
case
"opacity"
:
case
"fill-opacity"
:
case
"fill-opacity"
:
...
@@ -1319,7 +1320,7 @@ Raphael = (function () {
...
@@ -1319,7 +1320,7 @@ Raphael = (function () {
while
(
node
.
firstChild
)
{
while
(
node
.
firstChild
)
{
node
.
removeChild
(
node
.
firstChild
);
node
.
removeChild
(
node
.
firstChild
);
}
}
var
texts
=
(
params
.
text
+
E
)[
split
](
"\n"
);
var
texts
=
Str
(
params
.
text
)[
split
](
"\n"
);
for
(
var
i
=
0
,
ii
=
texts
[
length
];
i
<
ii
;
i
++
)
if
(
texts
[
i
])
{
for
(
var
i
=
0
,
ii
=
texts
[
length
];
i
<
ii
;
i
++
)
if
(
texts
[
i
])
{
var
tspan
=
$
(
"tspan"
);
var
tspan
=
$
(
"tspan"
);
i
&&
$
(
tspan
,
{
dy
:
fontSize
*
leading
,
x
:
a
.
x
});
i
&&
$
(
tspan
,
{
dy
:
fontSize
*
leading
,
x
:
a
.
x
});
...
@@ -1371,7 +1372,7 @@ Raphael = (function () {
...
@@ -1371,7 +1372,7 @@ Raphael = (function () {
return
this
.
_
.
rt
.
deg
;
return
this
.
_
.
rt
.
deg
;
}
}
var
bbox
=
this
.
getBBox
();
var
bbox
=
this
.
getBBox
();
deg
=
(
deg
+
E
)[
split
](
separator
);
deg
=
Str
(
deg
)[
split
](
separator
);
if
(
deg
[
length
]
-
1
)
{
if
(
deg
[
length
]
-
1
)
{
cx
=
toFloat
(
deg
[
1
]);
cx
=
toFloat
(
deg
[
1
]);
cy
=
toFloat
(
deg
[
2
]);
cy
=
toFloat
(
deg
[
2
]);
...
@@ -1684,10 +1685,10 @@ Raphael = (function () {
...
@@ -1684,10 +1685,10 @@ Raphael = (function () {
path2vml
=
function
(
path
)
{
path2vml
=
function
(
path
)
{
var
total
=
/
[
ahqstv
]
/ig
,
var
total
=
/
[
ahqstv
]
/ig
,
command
=
pathToAbsolute
;
command
=
pathToAbsolute
;
(
path
+
E
).
match
(
total
)
&&
(
command
=
path2curve
);
Str
(
path
).
match
(
total
)
&&
(
command
=
path2curve
);
total
=
/
[
clmz
]
/g
;
total
=
/
[
clmz
]
/g
;
if
(
command
==
pathToAbsolute
&&
!
(
path
+
E
).
match
(
total
))
{
if
(
command
==
pathToAbsolute
&&
!
Str
(
path
).
match
(
total
))
{
var
res
=
(
path
+
E
)[
rp
](
bites
,
function
(
all
,
command
,
args
)
{
var
res
=
Str
(
path
)[
rp
](
bites
,
function
(
all
,
command
,
args
)
{
var
vals
=
[],
var
vals
=
[],
isMove
=
lowerCase
.
call
(
command
)
==
"m"
,
isMove
=
lowerCase
.
call
(
command
)
==
"m"
,
res
=
map
[
command
];
res
=
map
[
command
];
...
@@ -1772,7 +1773,7 @@ Raphael = (function () {
...
@@ -1772,7 +1773,7 @@ Raphael = (function () {
o
.
rotate
(
params
.
rotation
,
true
);
o
.
rotate
(
params
.
rotation
,
true
);
}
}
if
(
params
.
translation
)
{
if
(
params
.
translation
)
{
xy
=
(
params
.
translation
+
E
)[
split
](
separator
);
xy
=
Str
(
params
.
translation
)[
split
](
separator
);
translate
.
call
(
o
,
xy
[
0
],
xy
[
1
]);
translate
.
call
(
o
,
xy
[
0
],
xy
[
1
]);
if
(
o
.
_
.
rt
.
cx
!=
null
)
{
if
(
o
.
_
.
rt
.
cx
!=
null
)
{
o
.
_
.
rt
.
cx
+=+
xy
[
0
];
o
.
_
.
rt
.
cx
+=+
xy
[
0
];
...
@@ -1781,11 +1782,11 @@ Raphael = (function () {
...
@@ -1781,11 +1782,11 @@ Raphael = (function () {
}
}
}
}
if
(
params
.
scale
)
{
if
(
params
.
scale
)
{
xy
=
(
params
.
scale
+
E
)[
split
](
separator
);
xy
=
Str
(
params
.
scale
)[
split
](
separator
);
o
.
scale
(
+
xy
[
0
]
||
1
,
+
xy
[
1
]
||
+
xy
[
0
]
||
1
,
+
xy
[
2
]
||
null
,
+
xy
[
3
]
||
null
);
o
.
scale
(
+
xy
[
0
]
||
1
,
+
xy
[
1
]
||
+
xy
[
0
]
||
1
,
+
xy
[
2
]
||
null
,
+
xy
[
3
]
||
null
);
}
}
if
(
"clip-rect"
in
params
)
{
if
(
"clip-rect"
in
params
)
{
var
rect
=
(
params
[
"clip-rect"
]
+
E
)[
split
](
separator
);
var
rect
=
Str
(
params
[
"clip-rect"
]
)[
split
](
separator
);
if
(
rect
[
length
]
==
4
)
{
if
(
rect
[
length
]
==
4
)
{
rect
[
2
]
=
+
rect
[
2
]
+
(
+
rect
[
0
]);
rect
[
2
]
=
+
rect
[
2
]
+
(
+
rect
[
0
]);
rect
[
3
]
=
+
rect
[
3
]
+
(
+
rect
[
1
]);
rect
[
3
]
=
+
rect
[
3
]
+
(
+
rect
[
1
]);
...
@@ -1854,7 +1855,7 @@ Raphael = (function () {
...
@@ -1854,7 +1855,7 @@ Raphael = (function () {
fill
.
color
=
R
.
getRGB
(
params
.
fill
).
hex
;
fill
.
color
=
R
.
getRGB
(
params
.
fill
).
hex
;
fill
.
src
=
E
;
fill
.
src
=
E
;
fill
.
type
=
"solid"
;
fill
.
type
=
"solid"
;
if
(
R
.
getRGB
(
params
.
fill
).
error
&&
(
res
.
type
in
{
circle
:
1
,
ellipse
:
1
}
||
(
params
.
fill
+
E
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
res
,
params
.
fill
))
{
if
(
R
.
getRGB
(
params
.
fill
).
error
&&
(
res
.
type
in
{
circle
:
1
,
ellipse
:
1
}
||
Str
(
params
.
fill
).
charAt
()
!=
"r"
)
&&
addGradientFill
(
res
,
params
.
fill
))
{
a
.
fill
=
"none"
;
a
.
fill
=
"none"
;
a
.
gradient
=
params
.
fill
;
a
.
gradient
=
params
.
fill
;
}
}
...
@@ -1912,7 +1913,7 @@ Raphael = (function () {
...
@@ -1912,7 +1913,7 @@ Raphael = (function () {
a
[
"font-size"
]
&&
(
s
.
fontSize
=
a
[
"font-size"
]);
a
[
"font-size"
]
&&
(
s
.
fontSize
=
a
[
"font-size"
]);
a
[
"font-weight"
]
&&
(
s
.
fontWeight
=
a
[
"font-weight"
]);
a
[
"font-weight"
]
&&
(
s
.
fontWeight
=
a
[
"font-weight"
]);
a
[
"font-style"
]
&&
(
s
.
fontStyle
=
a
[
"font-style"
]);
a
[
"font-style"
]
&&
(
s
.
fontStyle
=
a
[
"font-style"
]);
res
.
node
.
string
&&
(
res
.
paper
.
span
.
innerHTML
=
(
res
.
node
.
string
+
E
)[
rp
](
/</g
,
"<"
)[
rp
](
/&/g
,
"&"
)[
rp
](
/
\n
/g
,
"<br>"
));
res
.
node
.
string
&&
(
res
.
paper
.
span
.
innerHTML
=
Str
(
res
.
node
.
string
)[
rp
](
/</g
,
"<"
)[
rp
](
/&/g
,
"&"
)[
rp
](
/
\n
/g
,
"<br>"
));
res
.
W
=
a
.
w
=
res
.
paper
.
span
.
offsetWidth
;
res
.
W
=
a
.
w
=
res
.
paper
.
span
.
offsetWidth
;
res
.
H
=
a
.
h
=
res
.
paper
.
span
.
offsetHeight
;
res
.
H
=
a
.
h
=
res
.
paper
.
span
.
offsetHeight
;
res
.
X
=
a
.
x
;
res
.
X
=
a
.
x
;
...
@@ -1941,7 +1942,7 @@ Raphael = (function () {
...
@@ -1941,7 +1942,7 @@ Raphael = (function () {
type
=
"linear"
,
type
=
"linear"
,
fxfy
=
".5 .5"
;
fxfy
=
".5 .5"
;
o
.
attrs
.
gradient
=
gradient
;
o
.
attrs
.
gradient
=
gradient
;
gradient
=
(
gradient
+
E
)[
rp
](
radial_gradient
,
function
(
all
,
fx
,
fy
)
{
gradient
=
Str
(
gradient
)[
rp
](
radial_gradient
,
function
(
all
,
fx
,
fy
)
{
type
=
"radial"
;
type
=
"radial"
;
if
(
fx
&&
fy
)
{
if
(
fx
&&
fy
)
{
fx
=
toFloat
(
fx
);
fx
=
toFloat
(
fx
);
...
@@ -2025,7 +2026,7 @@ Raphael = (function () {
...
@@ -2025,7 +2026,7 @@ Raphael = (function () {
}
}
return
this
.
_
.
rt
.
deg
;
return
this
.
_
.
rt
.
deg
;
}
}
deg
=
(
deg
+
E
)[
split
](
separator
);
deg
=
Str
(
deg
)[
split
](
separator
);
if
(
deg
[
length
]
-
1
)
{
if
(
deg
[
length
]
-
1
)
{
cx
=
toFloat
(
deg
[
1
]);
cx
=
toFloat
(
deg
[
1
]);
cy
=
toFloat
(
deg
[
2
]);
cy
=
toFloat
(
deg
[
2
]);
...
@@ -2219,7 +2220,7 @@ Raphael = (function () {
...
@@ -2219,7 +2220,7 @@ Raphael = (function () {
this
.
node
.
string
=
params
.
text
;
this
.
node
.
string
=
params
.
text
;
}
}
setFillAndStroke
(
this
,
params
);
setFillAndStroke
(
this
,
params
);
if
(
params
.
gradient
&&
(({
circle
:
1
,
ellipse
:
1
})[
has
](
this
.
type
)
||
(
params
.
gradient
+
E
).
charAt
()
!=
"r"
))
{
if
(
params
.
gradient
&&
(({
circle
:
1
,
ellipse
:
1
})[
has
](
this
.
type
)
||
Str
(
params
.
gradient
).
charAt
()
!=
"r"
))
{
addGradientFill
(
this
,
params
.
gradient
);
addGradientFill
(
this
,
params
.
gradient
);
}
}
(
!
pathlike
[
has
](
this
.
type
)
||
this
.
_
.
rt
.
deg
)
&&
this
.
setBox
(
this
.
attrs
);
(
!
pathlike
[
has
](
this
.
type
)
||
this
.
_
.
rt
.
deg
)
&&
this
.
setBox
(
this
.
attrs
);
...
@@ -2368,7 +2369,7 @@ Raphael = (function () {
...
@@ -2368,7 +2369,7 @@ Raphael = (function () {
path
.
textpathok
=
true
;
path
.
textpathok
=
true
;
ol
.
width
=
vml
.
width
;
ol
.
width
=
vml
.
width
;
ol
.
height
=
vml
.
height
;
ol
.
height
=
vml
.
height
;
o
.
string
=
text
+
E
;
o
.
string
=
Str
(
text
)
;
o
.
on
=
true
;
o
.
on
=
true
;
el
[
appendChild
](
o
);
el
[
appendChild
](
o
);
el
[
appendChild
](
path
);
el
[
appendChild
](
path
);
...
@@ -3126,8 +3127,8 @@ Raphael = (function () {
...
@@ -3126,8 +3127,8 @@ Raphael = (function () {
}
}
break
;
break
;
case
"csv"
:
case
"csv"
:
var
values
=
(
params
[
attr
]
+
E
)[
split
](
separator
),
var
values
=
Str
(
params
[
attr
]
)[
split
](
separator
),
from2
=
(
from
[
attr
]
+
E
)[
split
](
separator
);
from2
=
Str
(
from
[
attr
]
)[
split
](
separator
);
switch
(
attr
)
{
switch
(
attr
)
{
case
"translation"
:
case
"translation"
:
from
[
attr
]
=
[
0
,
0
];
from
[
attr
]
=
[
0
,
0
];
...
@@ -3139,11 +3140,11 @@ Raphael = (function () {
...
@@ -3139,11 +3140,11 @@ Raphael = (function () {
break
;
break
;
case
"scale"
:
case
"scale"
:
params
[
attr
]
=
values
;
params
[
attr
]
=
values
;
from
[
attr
]
=
(
from
[
attr
]
+
E
)[
split
](
separator
);
from
[
attr
]
=
Str
(
from
[
attr
]
)[
split
](
separator
);
diff
[
attr
]
=
[(
values
[
0
]
-
from
[
attr
][
0
])
/
ms
,
(
values
[
1
]
-
from
[
attr
][
1
])
/
ms
,
0
,
0
];
diff
[
attr
]
=
[(
values
[
0
]
-
from
[
attr
][
0
])
/
ms
,
(
values
[
1
]
-
from
[
attr
][
1
])
/
ms
,
0
,
0
];
break
;
break
;
case
"clip-rect"
:
case
"clip-rect"
:
from
[
attr
]
=
(
from
[
attr
]
+
E
)[
split
](
separator
);
from
[
attr
]
=
Str
(
from
[
attr
]
)[
split
](
separator
);
diff
[
attr
]
=
[];
diff
[
attr
]
=
[];
i
=
4
;
i
=
4
;
while
(
i
--
)
{
while
(
i
--
)
{
...
@@ -3360,7 +3361,7 @@ Raphael = (function () {
...
@@ -3360,7 +3361,7 @@ Raphael = (function () {
Paper
[
proto
].
print
=
function
(
x
,
y
,
string
,
font
,
size
,
origin
)
{
Paper
[
proto
].
print
=
function
(
x
,
y
,
string
,
font
,
size
,
origin
)
{
origin
=
origin
||
"middle"
;
// baseline|middle
origin
=
origin
||
"middle"
;
// baseline|middle
var
out
=
this
.
set
(),
var
out
=
this
.
set
(),
letters
=
(
string
+
E
)[
split
](
E
),
letters
=
Str
(
string
)[
split
](
E
),
shift
=
0
,
shift
=
0
,
path
=
E
,
path
=
E
,
scale
;
scale
;
...
...
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