1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-02 04:42:43 +02:00

Rational bezier (#208)

* .

* meh

* rational beziers
This commit is contained in:
Pomax
2019-08-18 17:13:27 -07:00
committed by GitHub
parent d8dffb0cda
commit 782c509850
28 changed files with 3041 additions and 2466 deletions

View File

@@ -285,6 +285,8 @@ var BSplineGraphic = React.createClass({
this.height = (h||w)|0;
this.cvs.width = this.width;
this.cvs.height = this.height;
this.cvs.style.width = this.width + "px";
this.cvs.style.height = this.height + "px";
this.ctx = this.cvs.getContext("2d");
},