Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 418 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 418 Bytes

while42-logo

Open-source while42 logo using HTML5 canvas.
The result can be seen here.

Example

<!DOCTYPE html>
<html>
  <body>
    <canvas id="canvas"></canvas>
    <script src="srcs/script.js"></script>
    <script>
        new while42.logo.constructor().render(document.getElementById('canvas').getContext('2d'));
    </script>
  </body>
</html>