| OLD | NEW |
| 1 <HTML> | 1 <HTML> |
| 2 <HEAD> | 2 <HEAD> |
| 3 <TITLE>Voronoi Demo</TITLE> | 3 <TITLE>Voronoi Demo</TITLE> |
| 4 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> | 4 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> |
| 5 <META HTTP-EQUIV="Expires" CONTENT="-1"> | 5 <META HTTP-EQUIV="Expires" CONTENT="-1"> |
| 6 | 6 |
| 7 <script type="text/javascript"> | 7 <script type="text/javascript"> |
| 8 | 8 |
| 9 var nacl_elt; | 9 var nacl_elt; |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 </script> | 37 </script> |
| 38 | 38 |
| 39 </HEAD> | 39 </HEAD> |
| 40 <BODY id="bodyId" onload="Init();" > | 40 <BODY id="bodyId" onload="Init();" > |
| 41 | 41 |
| 42 <h1>Voronoi Demo</h1> | 42 <h1>Voronoi Demo</h1> |
| 43 <p> | 43 <p> |
| 44 A brute force algorithm is used to render the Voronoi diagram for a set of mov
ing points. | 44 A brute force algorithm is used to render the Voronoi diagram for a set of mov
ing points. |
| 45 </p> | 45 </p> |
| 46 <embed id="embed1" src="voronoi.nexe" type="application/x-nacl-srpc" width=512 h
eight=512> | 46 <embed id="embed1" nexe="voronoi" type="application/x-nacl-srpc" |
| 47 width=512 height=512> |
| 48 <noembed> |
| 49 Your browser does not appear to support Native Client. |
| 50 Visit http://code.google.com/p/nativeclient/ to get started. |
| 51 <noembed/> |
| 52 </embed> |
| 47 <br> | 53 <br> |
| 48 | 54 |
| 49 <script> | 55 <script> |
| 50 var embed1 = document.getElementById('embed1'); | 56 var embed1 = document.getElementById('embed1'); |
| 51 </script> | 57 </script> |
| 52 | 58 |
| 53 | 59 |
| 54 </BODY> | 60 </BODY> |
| 55 </HTML> | 61 </HTML> |
| OLD | NEW |