mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-01-18 14:13:34 +01:00
77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
/**
|
|
* This is an ordered list of all sections used in the Bezier primer.
|
|
*
|
|
* The ordering you see here reflects the ordering in which sections
|
|
* are present on the Primer page: do not change them unless there is
|
|
* a REALLY good reason to =)
|
|
*
|
|
*/
|
|
module.exports = {
|
|
preface: require("./preface"),
|
|
|
|
// the basic topic(s) introduction(s)
|
|
introduction: require("./introduction"),
|
|
whatis: require("./whatis"),
|
|
explanation: require("./explanation"),
|
|
control: require("./control"),
|
|
extended: require("./extended"),
|
|
|
|
// basic operations
|
|
matrix: require("./matrix"),
|
|
decasteljau: require("./decasteljau"),
|
|
flattening: require("./flattening"),
|
|
splitting: require("./splitting"),
|
|
matrixsplit: require("./matrixsplit"),
|
|
reordering: require("./reordering"),
|
|
|
|
// information that can be obtained through analysis
|
|
derivatives: require("./derivatives"),
|
|
pointvectors: require("./pointvectors"),
|
|
pointvectors3d: require("./pointvectors3d"),
|
|
components: require("./components"),
|
|
extremities: require("./extremities"),
|
|
boundingbox: require("./boundingbox"),
|
|
aligning: require("./aligning"),
|
|
tightbounds: require("./tightbounds"),
|
|
inflections: require("./inflections"),
|
|
canonical: require("./canonical"),
|
|
|
|
// accurate arc length is hard, yo
|
|
arclength: require("./arclength"),
|
|
arclengthapprox: require("./arclengthapprox"),
|
|
tracing: require("./tracing"),
|
|
|
|
// curve intersections
|
|
intersections: require("./intersections"),
|
|
curveintersection: require("./curveintersection"),
|
|
|
|
// curve manipulation
|
|
abc: require("./abc"),
|
|
moulding: require("./moulding"),
|
|
pointcurves: require("./pointcurves"),
|
|
|
|
// A quick foray into Catmull-Rom splines
|
|
catmullconv: require("./catmullconv"),
|
|
catmullmoulding: require("./catmullmoulding"),
|
|
|
|
// "things made of more than on curve"
|
|
polybezier: require("./polybezier"),
|
|
shapes: require("./shapes"),
|
|
|
|
// curve offsetting
|
|
projections: require("./projections"),
|
|
offsetting: require("./offsetting"),
|
|
graduatedoffset: require("./graduatedoffset"),
|
|
|
|
// circle and arc approximation
|
|
circles: require("./circles"),
|
|
circles_cubic: require("./circles_cubic"),
|
|
arcapproximation: require("./arcapproximation"),
|
|
|
|
// A quick foray in to B-Spline land
|
|
bsplines: require("./bsplines"),
|
|
|
|
// comments come last for obvious reasons
|
|
comments: require("./comments")
|
|
};
|