1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-12 03:34:12 +02:00

section 15, 16

This commit is contained in:
Pomax
2016-01-02 11:27:23 -08:00
parent 28373e5321
commit 982d432da8
24 changed files with 1583 additions and 163 deletions

View File

@@ -4,8 +4,10 @@ var SectionHeader = require("../../SectionHeader.jsx");
var Whatis = React.createClass({
statics: {
title: "So what makes a Bézier Curve?"
getDefaultProps: function() {
return {
title: "So what makes a Bézier Curve?"
};
},
interpolation: require("./interpolation"),
@@ -18,7 +20,7 @@ var Whatis = React.createClass({
render: function() {
return (
<section>
<SectionHeader {...this.props}>{Whatis.title}</SectionHeader>
<SectionHeader {...this.props} />
<p>Playing with the points for curves may have given you a feel for how Bézier curves behaves, but
what <em>are</em> Bézier curves, really? There are two ways to explain what a Bézier curve is, and