Instagram Feed

GĂĄbor Bazsali
Hungarian based, creative digital art studio © Generative CNC Art Studio 🎨 | Unique, limited-edition algorithmic designs 📸 | Explore my webshop 👇|
Most people think creating generative art requires coding.
It doesnât.
I built a free browser-based generator where you can create your own parametric pen plot artwork in seconds.
âïž Adjust the sliders.
đš Watch the design update in real time.
đ„ Download a ready-to-plot SVG.
âïž Send it straight to your pen plotter.
Whether youâre testing a new machine, learning generative art, or simply looking for your next drawing, this is the easiest place to start.
No software.
No programming.
Just create, download, and plot.
đ Try it now via the link in my bio.
Iâd love to see what you make tag @lineworkart in your first plot.
#penplotter #generativeart #creativecoding #svg #education
2 months ago

For the last few years, Iâve been obsessed with designing machines that transform code into physical drawings.
Today, that journey finally has an identity.
Meet the new MakerKit.
The logo isnât just an âM.â Itâs built around the same principles that define the products themselves: precision, structure, and intentional design. The proportions follow the golden ratio, while the single orange node represents the pen completing the final stroke of a drawing. Every detail has a purpose.
This is more than a logo: Itâs the foundation of a brand built for makers, artists, engineers, creative coders, and everyone who believes that great ideas deserve to exist in the physical world.
Build the machine. Plot the idea.
What do you see when you look at the symbol? đ
#MakerKit #LogoDesign #IndustrialDesign #productdesign
2 months ago
Most people see the finished artwork.
What they donât see are the hundreds of design iterations, failed prototypes, and countless hours spent refining the machine behind every single line.
MakerKit Digital Builder Pack gives you access to the complete mechanical foundation Iâve developed over the past three years including the STL files, assembly guide, BOM, calibration notes, and the workflow I use to bring generative art into the physical world.
Whether youâre a maker, creative coder, architect, designer, or simply fascinated by generative drawing systems, this is your opportunity to build it yourself.
đ Explore the MakerKit through the link in my bio or visit:
lineworkart.gumroad.com/l/MakerKit
Iâm excited to see what youâll create.
Comment: âSYSTEMâ to acces the files.
3 months ago
Most people see the artwork.
Few see the machine behind it.
Over the past 3 years, Iâve been refining a drawing system designed to transform algorithms into physical linework. Countless iterations, failed prints, redesigns, and small improvements eventually led to the machine I use today.
Now, for the first time, Iâm opening up the system behind my artworks.
MakerKit Digital Builder Pack includes:
âïž STL Files
đ Full BOM
đ§ Assembly Guide
đ» Electronics Recommendations
đ§ Workflow Insights
This isnât just a folder of files.
Itâs the build foundation behind my generative drawing process.
If youâve ever wanted to explore the intersection of art, code, and machines, this is where it starts.
Comment SYSTEM to explore itđ
3 months ago
How to build your own drawing machine.
Hereâs the truth about generative art:
â You donât need an expensive plotter.
â You donât need a workshop.
â You donât need engineering experience.
â
You just need the right system.
The machine behind my artworks started with:
âą 3D printed parts
âą Stepper motors
âą Open-source electronics
âą A few evenings of building
âą A lot of curiosity
Today it creates artwork line by line. The same machine shown in this video is now available as a Digital Builder Pack:
â STL Files
â Complete BOM
â Assembly Guide
â Electronics Recommendations
Build the machine.
Create the art.
Link in bio. đ
#penplotter #art #codeart #diy
3 months ago





You asked.
I listened. đ
The files are finally opening. âïžđ
MakerKit Digital Builder Pack is the system behind my artworks – the actual printable parts, workflow logic, calibration notes and machine setup I use to create my pen plotter pieces. đïžđ ïž
This is the first public digital release. đ§
đ«” For makers, artists, engineers and curious minds who want to look behind the artwork and understand the machine behind the lines.
To be sure your access and get the infos from first hand, drop a comment: âACCESSâ đđ„
Iâll send you the entry point through DM.
#makerkit #cnc #dıy #penplotter
4 months ago
Youâre watching ideas turn into motion.
This is not a finished product itâs the process.
Lines, iterations, small adjustments⊠again and again.
Every part you see here was tested, refined, rebuilt.
The MakerKit is the result of that journey.
A penplotter you assemble, understand, and make your own.
If youâre curious how it comes together
scan the code and step inside.
#cnc #penplotter #dıy #lineworkart #drawingmachine
5 months ago
After weeks of testing, tweaking, and running beta printsâŠ
the DIY MakerKit is officially open on 24th of April.
This is the exact system I use to build my pen plotter mechanics now broken down into a format you can actually assemble yourself.
Not a polished product.
Not a black box.
A maker-first kit.
Whatâs inside (V1):
â 3D printed structural parts (PLA Carbon Fibre, tuned for durability)
â V-slot wheel system + core mechanics
â Screws & essential hardware
â Assembly logic (step-by-step in Notion)
Whatâs NOT inside:
â Electronics
â Frame
â intentionally. You build, you understand, you own it.
Why this exists
I didnât want to sell a machine.
I wanted to create an entry point into building one.
Something that sits between:
YouTube chaos â overpriced plug-and-play machines
â ïž First batch is limited (10 kits)
This is still early-stage.
Youâre not just buying a kit youâre shaping what comes next.
đ Full breakdown via Notion: link in story
If youâve ever thought about building your own plotterâŠ
this is your door.
#penplotter #art #minimalart #cnc
5 months ago

When your SVG breaks your G-code export⊠đ
Today I ran into a classic (and pretty frustrating) issue while exporting from DrawingBot:
âCannot invoke Point2D.getX() because point2D is nullâ
At first glance, it looks like a software bug but in reality, itâs almost always an SVG geometry problem.
â ïž Whatâs actually happening?
One (or more) elements in the SVG:
has no valid coordinates
is a zero-length / broken path
or contains unsupported geometry
đ Result: the exporter crashes because it canât read a valid point.
đ The fix (that actually works)
Instead of hunting the broken element manually, I ran the file through vpype to clean the geometry:
vpype read input.svg linemerge linesimplify filter –min-length 0.2mm write output.svg
đĄ Why this works:
linemerge â rebuilds broken paths
linesimplify â removes redundant points
filter â deletes tiny / invalid geometry (key step)
đ§ Important takeaway
If you work with:
generative geometry
CAD â SVG exports
parametric / plotter workflows
đ Your SVG is not always âcleanâ, even if it looks fine.
â
Pro tip (save yourself hours)
Before exporting to G-code:
Convert everything to paths (Illustrator / Inkscape)
Run a vpype cleanup pass
Then export
#educational #vpype #coder #lineworkart
5 months ago

I didnât plan to build a kit.
I just kept improving the machine, again and again, trying to make it more stable, more precise, more reliable.
Somewhere along the way, it turned into a complete system.
This is the final model.
Next step: pricing. Then launch.
#penplotter #art #lineworkart #cnc
5 months ago
â
This is more than just a Notion page.
Itâs the structure behind a system Iâve been refining for years.
Every part, every step, every mistake⊠now organized into something buildable.
âïžMakerKit is getting real.
First batch is coming soon.
And it wonât be for everyone.
DM âMAKERKITâ if you want in early. #penplotter #makerkit #diy #3dprinting
5 months ago







Not just parts. A system.
After weeks of redesign, testing, and refining the new components are finally coming together.
Every detail you see here exists for a reason:
stability, precision, repeatability.
This is the result of nearly 2 years of iteration solving problems you donât have to.
Now entering Beta Print phase.
The next step:
âïž preparing the first Maker Kit
The first batch will be very limited (5â10 units)
â built to test, refine, and improve with real users
If youâve ever thought about building your own plotterâŠ
this is where it starts.
đ© DM me or comment below âMAKERKITâ if you want to be part of the first batch
6 months ago











