|
You are here |
billhillapps.com | ||
| | | | |
blog.demofox.org
|
|
| | | | | Over the past year or so I've been digging fairly deeply into curves, mostly into Bezier curves specifically. While digging around, I've found many mentions of the De Casteljau algorithm for evaluating Bezier curves, but never much in the way of a formal definition of what the algorithm actually is, or practical examples of it... | |
| | | | |
mathinsight.org
|
|
| | | | | An introduction to how a vector-valued function of a single variable can be viewed as parametrizing a curve. Interactive graphics illustrate the way in which the function maps an interval onto a curve. | |
| | | | |
blog.pdebruin.org
|
|
| | | | | Recently I received a new work laptop, a Surface Laptop Studio and previously a Surface Book. Obviously Surface devices run Windows by default. And I also want to use Linux every now and then, for instance when doing demos for Linux audiences or creating or reviewing technical documentation. | |
| | | | |
wittchen.io
|
|
| | | When you fork GitHub repository, you usually want to have your fork up to date with the original repository. You can update your fork in a few easy steps. Just look at the following example of the Git commands: Add the remote, call it upstream: git remote add upstream https://github.com/whoever/whatever.git Fetch all the branches of that remote into remote-tracking branches, such as upstream/master: git fetch upstream Make sure that you're on your master branch: | ||