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
a2edf84f
authored
Jun 21, 2013
by
unel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getPath (and method that use) now working with simple elements like
"Circle"
parent
e5048b7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
6 deletions
+30
-6
raphael.core.js
+30
-6
No files found.
raphael.core.js
View file @
a2edf84f
...
@@ -3866,11 +3866,13 @@
...
@@ -3866,11 +3866,13 @@
= (number) length.
= (number) length.
\*/
\*/
elproto
.
getTotalLength
=
function
()
{
elproto
.
getTotalLength
=
function
()
{
if
(
this
.
type
!=
"path"
)
{
return
;}
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
if
(
this
.
node
.
getTotalLength
)
{
if
(
this
.
node
.
getTotalLength
)
{
return
this
.
node
.
getTotalLength
();
return
this
.
node
.
getTotalLength
();
}
}
return
getTotalLength
(
this
.
attrs
.
path
);
return
getTotalLength
(
path
);
};
};
/*\
/*\
* Element.getPointAtLength
* Element.getPointAtLength
...
@@ -3890,8 +3892,29 @@
...
@@ -3890,8 +3892,29 @@
o }
o }
\*/
\*/
elproto
.
getPointAtLength
=
function
(
length
)
{
elproto
.
getPointAtLength
=
function
(
length
)
{
if
(
this
.
type
!=
"path"
)
{
return
;}
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
return
getPointAtLength
(
this
.
attrs
.
path
,
length
);
return
getPointAtLength
(
path
,
length
);
};
/*\
* Element.getPath
[ method ]
**
* Return path of element. Only works for element of "path" type and simple elements like "circle".
**
\*/
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
);
}
return
path
;
};
};
/*\
/*\
* Element.getSubpath
* Element.getSubpath
...
@@ -3907,8 +3930,9 @@
...
@@ -3907,8 +3930,9 @@
= (string) pathstring for the segment
= (string) pathstring for the segment
\*/
\*/
elproto
.
getSubpath
=
function
(
from
,
to
)
{
elproto
.
getSubpath
=
function
(
from
,
to
)
{
if
(
this
.
type
!=
"path"
)
{
return
;}
var
path
=
this
.
getPath
();
if
(
!
path
){
return
;
}
return
R
.
getSubpath
(
this
.
attrs
.
path
,
from
,
to
);
return
R
.
getSubpath
(
path
,
from
,
to
);
};
};
/*\
/*\
* Raphael.easing_formulas
* Raphael.easing_formulas
...
...
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