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
b6cc7248
authored
May 19, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set.isPoint inside method and vml fix
parent
affa2df6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
0 deletions
+52
-0
raphael-min.js
+0
-0
raphael.core.js
+25
-0
raphael.js
+26
-0
raphael.vml.js
+1
-0
No files found.
raphael-min.js
View file @
b6cc7248
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
b6cc7248
...
...
@@ -4927,6 +4927,31 @@
return
ret
;
};
/*\
* Set.isPointInside
[ method ]
**
* Determine if given point is inside this set’s elements
**
> Parameters
**
- x (number) x coordinate of the point
- y (number) y coordinate of the point
= (boolean) `true` if point is inside any of the set's elements
\*/
setproto
.
isPointInside
=
function
(
x
,
y
)
{
var
isPointInside
=
false
;
this
.
forEach
(
function
(
el
)
{
if
(
el
.
isPointInside
(
x
,
y
))
{
console
.
log
(
'runned'
);
isPointInside
=
true
;
return
false
;
// stop loop
}
});
return
isPointInside
;
};
/*\
* Raphael.registerFont
[ method ]
...
...
raphael.js
View file @
b6cc7248
...
...
@@ -5306,6 +5306,31 @@
return
ret
;
};
/*\
* Set.isPointInside
[ method ]
**
* Determine if given point is inside this set’s elements
**
> Parameters
**
- x (number) x coordinate of the point
- y (number) y coordinate of the point
= (boolean) `true` if point is inside any of the set's elements
\*/
setproto
.
isPointInside
=
function
(
x
,
y
)
{
var
isPointInside
=
false
;
this
.
forEach
(
function
(
el
)
{
if
(
el
.
isPointInside
(
x
,
y
))
{
console
.
log
(
'runned'
);
isPointInside
=
true
;
return
false
;
// stop loop
}
});
return
isPointInside
;
};
/*\
* Raphael.registerFont
[ method ]
...
...
@@ -7191,6 +7216,7 @@
rx
=
+
a
.
rx
||
+
a
.
r
||
0
,
ry
=
+
a
.
ry
||
+
a
.
r
||
0
;
node
.
path
=
R
.
format
(
"ar{0},{1},{2},{3},{4},{1},{4},{1}x"
,
round
((
cx
-
rx
)
*
zoom
),
round
((
cy
-
ry
)
*
zoom
),
round
((
cx
+
rx
)
*
zoom
),
round
((
cy
+
ry
)
*
zoom
),
round
(
cx
*
zoom
));
o
.
_
.
dirty
=
1
;
}
if
(
"clip-rect"
in
params
)
{
var
rect
=
Str
(
params
[
"clip-rect"
]).
split
(
separator
);
...
...
raphael.vml.js
View file @
b6cc7248
...
...
@@ -184,6 +184,7 @@ window.Raphael && window.Raphael.vml && function(R) {
rx
=
+
a
.
rx
||
+
a
.
r
||
0
,
ry
=
+
a
.
ry
||
+
a
.
r
||
0
;
node
.
path
=
R
.
format
(
"ar{0},{1},{2},{3},{4},{1},{4},{1}x"
,
round
((
cx
-
rx
)
*
zoom
),
round
((
cy
-
ry
)
*
zoom
),
round
((
cx
+
rx
)
*
zoom
),
round
((
cy
+
ry
)
*
zoom
),
round
(
cx
*
zoom
));
o
.
_
.
dirty
=
1
;
}
if
(
"clip-rect"
in
params
)
{
var
rect
=
Str
(
params
[
"clip-rect"
]).
split
(
separator
);
...
...
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