Fork of HakanSeven12/OpenCADStudio (GPL-3.0), patched for embedded job-scoped load/save integration with the CMMS.
  • Rust 71.9%
  • Fluent 26.7%
  • WGSL 0.7%
  • Max 0.3%
  • HTML 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Hakan Seven d1d4bb3d02 fix: restore paper-space viewport rendering as single full-canvas widget
Iced 0.14 batches all shader prepare() calls before any render() calls.
Multiple ViewportPane widgets sharing the same Pipeline type overwrite
each other's GPU buffers, causing the PaperSheet layer (full-canvas) to
render the last viewport's model content — appearing full-screen.

Fix: paper_canvas_view() now renders a single full-canvas PaperSheet
widget. build_paper_sheet_primitive() is updated to include model-space
content projected through each viewport's view matrix (via
viewport_content_wires()), restoring the original working behaviour.

ViewportPane::Paper mode and viewport_screen_rect() are kept with
#[allow(dead_code)] — a per-viewport wgpu sub-renderer that accumulates
data across frames could revive them in the future.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-23 03:02:01 +03:00
.github Rename workflow and job identifiers for clarity 2026-03-31 01:18:29 +03:00
assets feat: add Report/About/Changelog buttons to Support ribbon group 2026-04-22 22:22:33 +03:00
flatpak Remove redundant Flatpak README 2026-03-22 20:27:23 +03:00
src fix: restore paper-space viewport rendering as single full-canvas widget 2026-04-23 03:02:01 +03:00
.gitignore chore: exclude ROADMAP.md from version control 2026-04-06 23:28:04 +03:00
build.rs feat: redesign View tab and fix Annotate/tab order 2026-04-09 12:25:15 +03:00
Cargo.lock chore: bump version to 0.1.5 2026-04-22 22:23:00 +03:00
Cargo.toml chore: bump version to 0.1.5 2026-04-22 22:23:00 +03:00
COMMANDS.md docs: add COMMANDS.md and update ROADMAP.md in English 2026-04-09 20:06:35 +03:00
LICENSE Initial commit 2026-03-22 14:53:51 +03:00
README.md Add README with installation and build instructions 2026-03-22 18:31:46 +03:00
ROADMAP.md docs: add ROADMAP.md with unimplemented ribbon commands 2026-04-09 19:49:06 +03:00
VIEWPORT_WIDGET_PLAN.md docs: mark Steps 5-6 complete in ViewportPane plan 2026-04-23 02:47:42 +03:00

H7CAD

resim

A CAD application for 2D/3D drawing and design, built with Rust.

Features

  • 2D drafting and 3D modeling
  • DXF file import/export
  • GPU-accelerated rendering via WebGPU
  • Snap and annotation tools
  • Modular ribbon interface (Home, Annotate, Insert, View, Manage)

Installation

Flatpak (Linux)

Download H7CAD.flatpak from the latest release, then:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install H7CAD.flatpak
flatpak run io.github.HakanSeven12.H7CAD

Build from Source

Requirements: Rust 1.75+

git clone https://github.com/HakanSeven12/H7CAD.git
cd H7CAD
cargo build --release
./target/release/H7CAD

License

GPL-3.0-only — see LICENSE