1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-28 00:59:00 +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

@@ -2,14 +2,16 @@ var React = require("react");
var SectionHeader = require("../../SectionHeader.jsx");
var Matrix = React.createClass({
statics: {
title: "Bézier curvatures as matrix operations"
getDefaultProps: function() {
return {
title: "Bézier curvatures as matrix operations"
};
},
render: function() {
return (
<section>
<SectionHeader {...this.props}>{Matrix.title}</SectionHeader>
<SectionHeader {...this.props} />
<p>We can also represent Bézier as matrix operations, by expressing the Bézier formula
as a polynomial basis function, the weight matrix, and the actual coordinates as matrix.