| 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 startupTimeout; | 9 var startupTimeout; |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 </head> | 36 </head> |
| 37 <body onload="InitializeModule();" > | 37 <body onload="InitializeModule();" > |
| 38 | 38 |
| 39 <h1>Voronoi Demo</h1> | 39 <h1>Voronoi Demo</h1> |
| 40 <p> | 40 <p> |
| 41 A brute force algorithm is used to render the Voronoi diagram | 41 A brute force algorithm is used to render the Voronoi diagram |
| 42 for a set of moving points. | 42 for a set of moving points. |
| 43 </p> | 43 </p> |
| 44 <embed id="nacl_module" | 44 <embed id="nacl_module" |
| 45 src="voronoi.nexe" | 45 src="voronoi.nexe" |
| 46 type="application/x-nacl-srpc" | 46 type="application/x-nacl" |
| 47 width=512 height=512> | 47 width=512 height=512> |
| 48 <br> | 48 <br> |
| 49 | 49 |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| OLD | NEW |