Documentation

Installed library docs.

Browse the platform conventions and installed CAD libraries that can be linked into Varcad projects.

Varcad.io
Built-in platform
Platform conventions for mixed SCAD/JSCAD projects, widgets, repository publishing, previews, and geometry workflows.
Loading installed libraries...

Varcad.io

Platform conventions for mixed SCAD/JSCAD projects, widgets, repository publishing, previews, and geometry workflows.

Platformplatformvarcad-io

Quick start

Create a parametric shape, render it in the browser, then expose the values you want people to edit.

OpenSCAD
  1. Create a new Varcad project.
  2. Add an index.scad file and paste the example.
  3. Render the project, then add widgets.json when you are ready to expose parameters.
index.scad
radius = 12;
height = 20;

cylinder(
    r = radius,
    h = height,
    $fn = 64
);

Project Structure

Varcad projects can combine source files, assets, widget metadata, generated previews, and linked libraries in a repository-shaped workspace.

Widgets

Widget definitions expose editable parameters to the IDE so a design can be adjusted without editing source code directly.

Previews

Repositories can publish static preview images and hover animations so projects are easier to recognize from the dashboard.