UNPKG

epubjs

Version:

Render ePub documents in the browser, across many devices

164 lines (163 loc) 6.61 kB
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta charset="utf-8"/> <title>Getting Started with Processing</title> <script type="text/javascript"> if(!window.atlasplugins) window.atlasplugins = {} atlasplugins.codeMirrorSettings = { theme: "3024-day" } </script> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css"> </link> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"> </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <link rel="stylesheet" type="text/css" href="theme/html/html.css"/> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/codemirror.min.css"/> <link rel="stylesheet" type="text/css" href="https://d2uogd9jz9k9zm.cloudfront.net/processingjs-0.0.3.css"/> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript"> </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/codemirror.min.js" type="text/javascript"> </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/4.5.0/mode/clike/clike.min.js" type="text/javascript"> </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js" type="text/javascript"> </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.4.8/processing.min.js" type="text/javascript"> </script> <script src="https://d2uogd9jz9k9zm.cloudfront.net/processingjs-0.0.3.min.js" type="text/javascript"> </script> <script type="text/javascript"> $(function() { // Make all non runnable examples readonly codemirrors $('pre:not(*[data-executable], .CodeMirror pre)').each(function(i, el) { var textArea = $('<textarea>' + el.innerHTML + '</textarea>') $(el).replaceWith(textArea); var editor = CodeMirror.fromTextArea(textArea[0], { mode: "text/x-java", theme: "3024-day", readOnly: true, viewportMargin: 0 }); }); }); </script> <style type="text/css"> /* This needs to come last to set auto height, and html.css is always included first */ .CodeMirror { height: auto; font-size: 14px; padding: 15px; border-radius: 5px; } .CodeMirror-scroll { overflow-y: hidden; overflow-x: auto; height: auto; } </style> <script type="text/javascript" src="theme/html/epub.js"> </script> <script type="text/javascript" src="theme/html/reader.js"> </script> </head> <body data-type="book" id="viewer"> <section data-type="copyright-page" data-pdf-bookmark="Getting Started with Processing" id="idp1628544"> <h1>Getting Started with Processing</h1> <p class="author"> by <span class="firstname">Casey </span> <span class="surname">Reas</span> and <span class="firstname">Ben </span> <span class="surname">Fry</span> </p> <p class="copyright">Copyright © 2010 Casey Reas and Ben Fry. All rights reserved.</p> <p class="printlocation">Printed in the United States of America.</p> <p class="publisher"> Published by <span class="publishername">Maker Media, Inc.</span> , 1005 Gravenstein Highway North, Sebastopol, CA 95472. </p> <p> Maker Media books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles ( <a href="http://safaribooksonline.com">http://safaribooksonline.com</a> ). For more information, contact O’Reilly Media’s corporate/institutional sales department: 800-998-9938 or <span data-type="email">corporate@oreilly.com</span> . </p> <ul class="stafflist"> <li> <span class="staffrole">Editor:</span> Brian Jepson </li> <li> <span class="staffrole">Production Editor:</span> Rachel Monaghan </li> <li> <span class="staffrole">Copyeditor:</span> Nancy Kotary </li> <li> <span class="staffrole">Proofreader:</span> FILL IN PROOFREADER </li> <li> <span class="staffrole">Indexer:</span> Ron Strauss </li> <li> <span class="staffrole">Interior Designer:</span> David Futato </li> <li> <span class="staffrole">Cover Designer:</span> Karen Montgomery </li> <li> <span class="staffrole">Illustrator:</span> Rebecca Demarest </li> </ul> <ul class="printings"> <li> <span class="printedition">June 2010:</span> First Edition </li> </ul> <!--Add additional revdate spans below as needed.--> <div> <h1 class="revisions">Revision History for the First Edition</h1> <ul class="releases"> <li> <span class="revdate">YYYY-MM-DD:</span> First Release </li> </ul> </div> <p class="errata"> See <a href="http://oreilly.com/catalog/errata.csp?isbn=9781449379803">http://oreilly.com/catalog/errata.csp?isbn=9781449379803</a> for release details. </p> <div class="legal"> <p> While the publisher and the author(s) have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author(s) disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights. <!--PROD: Uncomment the following sentence if appropriate and add it to the above para:--> <!--This book is not intended as [legal/medical/financial; use the appropriate reference] advice. Please consult a qualified professional if you require [legal/medical/financial] advice.--> </p> </div> <div class="copyright-bottom"> <p class="isbn">978-1-449-37980-3</p> <p class="printer">[FILL IN]</p> </div> </section> </body> </html>