Koen Schmeets
Koen Schmeets
Thanks for the report! Will fix this in a bit > Op 27 sep. 2013 om 14:00 heeft Kirk Bushell [email protected] het volgende geschreven: > > Not sure if you're...
:+1: This is what I get: ``` $ make render-vector cc -g -Wall -O3 -o render-vector render.o util.o clip.o dump.o vector_tile.pb.o vector.o -lm -lz -lprotobuf-lite /usr/bin/ld: vector.o: undefined reference to...
@danmarshall Perhaps we should use ClipperLib for offsets & boolean ops, it seems to be faster and more reliable, I have got an example over here: https://github.com/makercam/makercam/blob/2e440e2d3cd93418233b89069cb46fdc009a4f23/src/clipperOffset.ts
I see, hats off to you for making that happen! What is the algorithm you are using? is there any documentation on that (besides the code)? I see that other...
Hey dan, yes I am using TypeScript indeed, I am trying to shorten all the method calls from makerjs, but I want to keep the type information intact (for auto...
Hi Dan, That's great and would totally work for my purposes as well! Perhaps use the `make` prefix? ```ts class BezierCurve implements IModel { // stuff static makeFromPointArray(points: IPoint[], accuracy?:...
Ah yeah that makes sense, then it would indeed be cool to have the "bezierCurve" prefix. About the kit example, that wouldn't work as I want it to because the...
That seems like a good solution, but if you are planning to add the static methods i'll wait for that or possibly make a PR for that someday =) By...
I just uploaded the christmas ball script here: https://github.com/makercam/makercam-example-christmas/blob/master/index.ts And published all packages under the `makercam` namespace https://github.com/makercam Note: it's a bit of a mess at the moment =)
Here is my hacky attempt at it (only has some basics at the moment): https://github.com/makercam/makercam/blob/master/src/drawing.ts