2015-12-20 15:19:50 -08:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
< title > A Primer on Bézier Curves< / title >
<!-- opengraph information -->
< meta property = "og:title" content = "A Primer on Bézier Curves" >
< meta property = "og:type" content = "text" >
< meta property = "og:url" content = "http://pomax.github.io/bezierinfo" >
< meta property = "og:description" content = "A detailed explanation of Bézier curves, and how to do the many things that we commonly want to do with them." >
< meta property = "og:locale" content = "en_GB" >
< meta property = "og:type" content = "article" >
< meta property = "og:published_time" content = "2013-06-13 12:00:00" >
< meta property = "og:author" content = "Mike 'Pomax' Kamermans" >
< meta property = "og:section" content = "Bézier Curves" >
< meta property = "og:tag" content = "Bézier Curves" >
2016-01-03 16:07:56 -08:00
< style >
body { width: 800px; margin: auto; }
2016-01-03 17:00:44 -08:00
header h1, header h2 { text-align: center; }
header h1 { font-size: 300%; margin: 0.2em; }
2016-01-03 16:37:22 -08:00
p.jsnote { margin: 2em; text-align: justify; }
2016-01-03 16:07:56 -08:00
< / style >
2015-12-20 15:19:50 -08:00
< / head >
< body >
< article >
< header >
< h1 > A Primer on Bézier Curves< / h1 >
2015-12-29 16:59:12 -08:00
< h2 > A free, online book for when you really need to know how to do Bézier things.< / h2 >
2015-12-20 15:19:50 -08:00
< / header >
<!-- React does its magic here -->
2016-01-03 16:07:56 -08:00
< div id = "article" >
2016-01-03 16:37:22 -08:00
< p class = "jsnote" > Loading book content...< / p >
< p class = "jsnote" > If you have JavaScript disabled, you'll have to enable it, as this book heavily relies on JS rendering, both for the base content (it's been written as a React application) and all the interactive graphics, which rely on JS not just for the user interaction but also for the live-drawing (none of the graphics in this book are flat images, they're all live-rendered).< / p >
2016-01-03 16:07:56 -08:00
< / div >
2015-12-20 15:19:50 -08:00
< / article >
< script src = "article.js" > < / script >
< / body >
< / html >