chebyshev-linkage-unit
v1.0.6
Published
Chebyshev link for Babylon.js.
Downloads
5
Readme
Chebyshev Linkage Unit
Chebyshev link for Babylon.js.
Usage
import * as BABYLON from "babylonjs";
import { createChebyshevLinkageUnit } from "http://esm.sh/chebyshev-linkage-unit";
// ~ omission ~
const chebyshev = createChebyshevLinkageUnit(BABYLON, scene, {
position: new BABYLON.Vector3(0, .5, 0),
});
engine.runRenderLoop(function () {
chebyshev.drive(-50);
scene.render();
});