Any BJS vector drawing examples?

Just wondering if anyone knows of any BJS vector drawing (simple lines & shapes) examples where the user can add and move line end point vertices to change the shape?

I had a bit of a search of the PG but couldn’t find anything.

1 Like

I know the html5 canvas itself can easily represent svgs in 2d space. 3d svg would be something though if you could command the quadratic and such

Not exactly what you are after but did some work on constructing extruded and lathed models by equivalent of vector drawing in BJS (2D drawing to give 3D models). Might give you some ideas

http://cubees.github.io/factory/extrude/extrude.html
http://cubees.github.io/factory/lathe/lathe.html

Code at Cubees.github.io/factory at master · Cubees/Cubees.github.io · GitHub

1 Like

Nice, thanks @JohnK