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
054a763f
authored
Jun 21, 2013
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaks to previous merge
parent
b1c60797
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
12 deletions
+23
-12
raphael.core.js
+23
-12
No files found.
raphael.core.js
View file @
054a763f
...
...
@@ -3866,7 +3866,10 @@
= (number) length.
\*/
elproto
.
getTotalLength
=
function
()
{
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
var
path
=
this
.
getPath
();
if
(
!
path
)
{
return
;
}
if
(
this
.
node
.
getTotalLength
)
{
return
this
.
node
.
getTotalLength
();
...
...
@@ -3892,7 +3895,10 @@
o }
\*/
elproto
.
getPointAtLength
=
function
(
length
)
{
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
var
path
=
this
.
getPath
();
if
(
!
path
)
{
return
;
}
return
getPointAtLength
(
path
,
length
);
};
...
...
@@ -3900,18 +3906,20 @@
* Element.getPath
[ method ]
**
* Return path of element. Only works for element of "path" type and simple elements like "circle".
* Returns path of the element. Only works for elements of “path” type and simple elements like circle.
= (object) path
**
\*/
elproto
.
getPath
=
function
()
{
var
path
;
if
(
this
.
type
===
"path"
)
{
path
=
this
.
attrs
.
path
}
else
if
(
R
.
_getPath
[
this
.
type
]
instanceof
Function
)
{
path
=
R
.
_getPath
[
this
.
type
](
this
);
elproto
.
getPath
=
function
()
{
var
path
,
getPath
=
R
.
_getPath
[
this
.
type
];
if
(
this
.
type
==
"text"
||
this
.
type
==
"set"
)
{
return
;
}
if
(
getPath
)
{
path
=
getPath
(
this
);
}
return
path
;
...
...
@@ -3930,7 +3938,10 @@
= (string) pathstring for the segment
\*/
elproto
.
getSubpath
=
function
(
from
,
to
)
{
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
var
path
=
this
.
getPath
();
if
(
!
path
)
{
return
;
}
return
R
.
getSubpath
(
path
,
from
,
to
);
};
...
...
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