Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
naramski committed Mar 25, 2018
1 parent 3af8498 commit 71d3ae5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.versionBackup
cadmelia-ide/dist
*/build
out
Expand Down
23 changes: 6 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
CADmelia is an open-source CAD tool for creating 3D CAD models. It focus on the CAD aspects of
3D modelling, and the goal is to help creating 3D printed objects (CAM : Computer Aided Manufacturing)

![CADmelia](screenshots/screenshot-mold.png)

Like OpenSCAD it is not an interactive modeller. Instead it is something like a 3D-compiler that
reads in a script file that describes the object and renders the 3D model from this script file.
This gives you (the designer) full control over the modelling process and enables you to easily change
Expand All @@ -26,26 +24,17 @@ CADmelia uses the modeling language defined by OpenSCAD (see [The_OpenSCAD_Langu

![http://www.openscad.org/cheatsheet/index.html](screenshots/openSCAD_cheat_sheet.png)

It is free software, licensed under EUPL, and available for Windows and MacOSX (not tested under Linux
but should work as it is based on Java).

# Download
It is free software, licensed under EUPL.

Download Windows 64-bits and MacOSX version from the [release page](https://github.com/naramski/cadmelia/releases).

# How to Build
# Usage (Command Line)

## Requirements
To compile a OpenSCAD script, the command line is :

The build requires Gradle and Java => 1.8.
java -jar cadmelia-cli-<version>.jar <openscad.script> <output.stl>

## Command Line

The project is managed with [Gradle](http://www.gradle.org/).

gradle assemble
# How to Build

The cadmelia-ide is built with Netbeans 8.2
The build requires Maven and Java => 1.8.

# License

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void test() throws Exception {

File stlFile = new File(buildDir, scriptFile.getName().substring(0, scriptFile.getName().length()-5) + ".stl");

CompileToSTLApp.main(new String[]{"main", scriptFile.getPath(), stlFile.getPath()});
CompileToSTLApp.main(new String[]{scriptFile.getPath(), stlFile.getPath()});

}

Expand Down
Binary file removed screenshots/screenshot-mold.png
Binary file not shown.

0 comments on commit 71d3ae5

Please sign in to comment.