Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fougue/mayo
3D CAD viewer and converter based on Qt + OpenCascade
https://github.com/fougue/mayo
3d-graphics 3d-viewer brep cad converter converter-cli dxf fbx gltf gltf-viewer iges meshviewer opencascade ply pointcloud qt5 step stl vrml wavefront-obj
Last synced: about 1 month ago
JSON representation
3D CAD viewer and converter based on Qt + OpenCascade
- Host: GitHub
- URL: https://github.com/fougue/mayo
- Owner: fougue
- License: bsd-2-clause
- Created: 2016-07-29T11:07:36.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-09-20T14:31:16.000Z (about 2 months ago)
- Last Synced: 2024-09-29T07:41:28.457Z (about 2 months ago)
- Topics: 3d-graphics, 3d-viewer, brep, cad, converter, converter-cli, dxf, fbx, gltf, gltf-viewer, iges, meshviewer, opencascade, ply, pointcloud, qt5, step, stl, vrml, wavefront-obj
- Language: C++
- Homepage:
- Size: 25.7 MB
- Stars: 1,383
- Watchers: 53
- Forks: 265
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Windows CI](https://github.com/fougue/mayo/actions/workflows/ci_windows.yml/badge.svg?branch=develop)](https://github.com/fougue/mayo/actions/workflows/ci_windows.yml)
[![Linux CI](https://github.com/fougue/mayo/actions/workflows/ci_linux.yml/badge.svg?branch=develop)](https://github.com/fougue/mayo/actions/workflows/ci_linux.yml)
[![macOS CI](https://github.com/fougue/mayo/actions/workflows/ci_macos.yml/badge.svg?branch=develop)](https://github.com/fougue/mayo/actions/workflows/ci_macos.yml)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d51f8ca6fea34886b8308ff0246172ce)](https://app.codacy.com/gh/fougue/mayo/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Downloads](https://img.shields.io/github/downloads/fougue/mayo/total.svg)](https://github.com/fougue/mayo/releases)
[![Version](https://img.shields.io/badge/version-v0.8.0-blue.svg?style=flat)](https://github.com/fougue/mayo/releases)
Mayo the opensource 3D CAD viewer and converter9>
## :eyeglasses: Overview
- **Convert 3D files**
Mayo can read/write 3D files from/to STEP, IGES, STL and many other [CAD formats](https://github.com/fougue/mayo/wiki/Supported-formats)- **Visualize 3D files**
Mayo 3D viewer supports clip planes, exploding of assemblies, measurement of shapes, show/hide parts, ...- **Cross platform**
Mayo runs on Windows, Linux and macOS- **Solid foundations**
Mayo is developed in modern C++ with [Qt](https://www.qt.io) and [OpenCascade](https://dev.opencascade.org)For more details have a look at this fine review [Introducing Mayo](https://librearts.org/2023/01/introducing-mayo-free-cad-files-viewer) by Libre Arts
There's also a complete [video](https://www.youtube.com/watch?v=qg6IamnlfxE&ab_channel=LibreArts) on YouTube## :zap: Features
- **3D clip planes** with configurable capping- **3D exploding of the model tree** allowing better exploration of complex designs
- **3D measure tools** for circles, angles, lengths, areas, bounding box, ...
- **3D view cube** providing intuitive camera manipulation
- **Quick access to CAD files** recently open thanks to thumbnails in the [Home page](https://github.com/fougue/mayo/blob/develop/doc/screenshot_5.png)
- **Toggle item visibility** within the Model tree(use checkbox)
- **Customizable mesh precision** for BREP shapes, affecting visualization quality and conversion into mesh formats
- **Convert files** to multiple CAD formats from [command-line interface](https://github.com/fougue/mayo/blob/develop/doc/screencast_cli.gif):computer:
## :floppy_disk: Supported formats
Format | Import | Export | Notes
----------|--------------------|--------------------|------------------
STEP | :white_check_mark: | :white_check_mark: | AP203, 214, 242
IGES | :white_check_mark: | :white_check_mark: | v5.3
BREP | :white_check_mark: | :white_check_mark: | OpenCascade format
DXF | :white_check_mark: | :x: |
OBJ | :white_check_mark: | :white_check_mark: |
glTF | :white_check_mark: | :white_check_mark: | 1.0, 2.0 and GLB
VRML | :white_check_mark: | :white_check_mark: | v2.0 UTF8
STL | :white_check_mark: | :white_check_mark: | ASCII/binary
AMF | :white_check_mark: | :white_check_mark: | v1.2 Text/ZIP(export)
PLY | :white_check_mark: | :white_check_mark: | ASCII/binary
OFF | :white_check_mark: | :white_check_mark: |
3MF | :white_check_mark: | :x: |
3DS | :white_check_mark: | :x: |
FBX | :white_check_mark: | :x: |
Collada | :white_check_mark: | :x: |
X3D | :white_check_mark: | :x: |
X(DirectX)| :white_check_mark: | :x: |
Image | :x: | :white_check_mark: | PNG, JPEG, ...See also this dedicated [wikipage](https://github.com/fougue/mayo/wiki/Supported-formats) for more details
## :mag: 3D viewer operations
Operation | Mouse/Keyboard controls
---------------|--------------------------
Rotate | mouseLeft + move
Pan | mouseRight + move
Zoom | mouseLeft + mouseRight + move
Zoom +/- | mouseWheel(scroll)
Window zoom | CTRL + mouseLeft + move
Instant zoom | spaceBar
Select Object | mouseLeft click
Select Objects | SHIFT + mouseLeft clicksMayo supports also multiple 3D viewer navigation styles to mimic common CAD applications(CATIA, SOLIDWORKS, ...)
## :package: Install
Release packages are available for Windows and Linux on the [Releases](https://github.com/fougue/mayo/releases) page.Alternatives for Windows:
- [Winget](https://winstall.app/apps/Fougue.Mayo)
````
winget install --id Fougue.Mayo
````
- [Scoop](https://scoop.sh/#/apps?s=0&d=1&o=true&q=mayo)
````
scoop bucket add extras
scoop install extras/mayo
````## :hammer: How to build
[Instructions for Windows](https://github.com/fougue/mayo/wiki/Build-instructions-for-Windows)
[Instructions for Linux](https://github.com/fougue/mayo/wiki/Build-instructions-for-Linux)
[Instructions for macOS](https://github.com/fougue/mayo/wiki/Build-instructions-for-macOS)## :clapper: Gallery
_Easy to use command-line utility for batch conversion of CAD files_
_Import of glTF file with textures_
_Import of STEP file with many parts_
_Import of PLY file defining point cloud_
_Options dialog with import/export configuration per CAD format_
_Home page with quick access to recent files_