Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F947648
test_fill.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
test_fill.html
View Options
<
html
xmlns:v
=
"urn:schemas-microsoft-com:vml"
xmlns:o
=
"urn:schemas-microsoft-com:office:office"
>
<
head
>
<
title
>
Testing fill rule
</
title
>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
/>
<
style
type
=
"text/css"
>
@
import
"../../../dojo/resources/dojo.css"
;
@
import
"../../../dijit/tests/css/dijitTests.css"
;
</
style
>
<!--
The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
<script type="text/javascript" src="Silverlight.js"></script>
-->
<
script
type
=
"text/javascript"
src
=
"../../../dojo/dojo.js"
djConfig
=
"isDebug: true"
></
script
>
<!--<script type="text/javascript" src="../_base.js"></script>-->
<!--<script type="text/javascript" src="../shape.js"></script>-->
<!--<script type="text/javascript" src="../path.js"></script>-->
<!--<script type="text/javascript" src="../vml.js"></script>-->
<!--<script type="text/javascript" src="../svg.js"></script>-->
<!--<script type="text/javascript" src="../silverlight.js"></script>-->
<
script
type
=
"text/javascript"
>
dojo
.
require
(
"dojox.gfx"
);
makeShapes
=
function
(){
var
surface
=
dojox
.
gfx
.
createSurface
(
"test"
,
500
,
500
);
var
path
=
surface
.
createPath
(
""
);
// form concentric circles
var
center
=
{
x
:
250
,
y
:
250
};
for
(
var
r
=
200
;
r
>
0
;
r
-=
30
){
// make two 180 degree arcs to form a circle
var
start
=
{
x
:
center
.
x
,
y
:
center
.
y
-
r
};
var
end
=
{
x
:
center
.
x
,
y
:
center
.
y
+
r
};
path
.
moveTo
(
start
).
arcTo
(
r
,
r
,
0
,
true
,
true
,
end
).
arcTo
(
r
,
r
,
0
,
true
,
true
,
start
).
closePath
();
}
// set visual attributes
path
.
setFill
(
"red"
).
setStroke
(
"black"
);
};
dojo
.
addOnLoad
(
makeShapes
);
</
script
>
</
head
>
<
body
>
<
h1
>
Testing fill rule
</
h1
>
<
div
id
=
"test"
style
=
"width: 500px; height: 500px;"
></
div
>
<
p
>
That's all Folks!
</
p
>
</
body
>
</
html
>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sat, Apr 26, 12:46 (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26826
Default Alt Text
test_fill.html (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment