Open confile opened 11 years ago
I need a curve with two points (0,37) to (255,255). How can I do that? I found that you can only have curves with 3 or 4 coordinates.
I search for this:
this.curves('g', [0, 37], [255, 255]);
Can I do the following to get the needed result?
this.curves('g', [0, 37], [0, 37], [255, 255]);
of
this.curves('g', [0, 37], [255, 255], [255, 255]);
If #114 gets merged, it should solve this issue.
I need a curve with two points (0,37) to (255,255). How can I do that? I found that you can only have curves with 3 or 4 coordinates.
I search for this:
Can I do the following to get the needed result?
of