Click here to Skip to main content
15,898,035 members
Articles / Web Development / HTML

Sierpinski Triangle - An Introduction into Silverlight by Example

Rate me:
Please Sign up or sign in to vote.
4.28/5 (14 votes)
20 May 20074 min read 105.6K   315   40  
An Introduction into Silverlight by Example
<!--
///////////////////////////////////////////////////////////////////////////////
//
//  Default.html
//
//
// © 2007 Microsoft Corporation. All Rights Reserved.
//
// This file is licensed as part of the Silverlight 1.1 SDK, for details look here: http://go.microsoft.com/fwlink/?LinkID=89145&clcid=0x409
//
///////////////////////////////////////////////////////////////////////////////
-->

<html xmlns="http://www.w3.org/1999/xhtml">
<!-- saved from url=(0014)about:internet -->
<head>
    <title>Silverlight Sierpinski Triangle</title>
    
    <script type="text/javascript" src="Silverlight.js"></script>
    <script type="text/javascript" src="Default.html.js"></script>
	<style type="text/css">
</style>
</head>

<!-- Give the keyboard focus to the Silverlight control by default -->
<body style="background-color:Black;color:White" onload="document.getElementById('SilverlightControl').focus()">

	
	<p></p>
		<table style="width:100%;">
		<tr>
			<td>
				    <div id="SilverlightControlHost" >
        <script type="text/javascript">
            createSilverlight();
        </script>
    </div></td>
			<td valign="top" align="left">
				<a href="http://www.cjcraft.com/blog/">Chris Craft&#39;s Blog</a><br />
				<br />The <a href="http://en.wikipedia.org/wiki/Sierpinski_triangle">Sierpinski triangle</a>, also called the Sierpinski gasket, is a fractal named 
				after Wacław Sierpiński who described it in 1915. Originally constructed as a 
				curve, this is one of the basic examples of self-similar sets.&nbsp;<br />
				<br />
				<a href="http://www.cjcraft.com/silverlight/SierpinskiTriangle/SierpinskiTriangle.zip">
				Download Silverlight Sierpinski Triangle source code</a></td>
		</tr>
		<tr>
			<td style="font-size:24px; color:White;" align="center">
				    Silverlight Sierpinski Triangle&nbsp;&nbsp;</td>
			<td valign="top" align="left">
				&nbsp;</td>
		</tr>
		</table>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions