https://github.com/miho/JFXScad
JavaFX 3D CSG IDE
https://github.com/miho/JFXScad
Last synced: 6 months ago
JSON representation
JavaFX 3D CSG IDE
- Host: GitHub
- URL: https://github.com/miho/JFXScad
- Owner: miho
- License: other
- Created: 2014-03-29T10:28:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T18:11:01.000Z (over 7 years ago)
- Last Synced: 2024-02-12T17:03:36.460Z (about 1 year ago)
- Language: Java
- Homepage: http://miho.github.io/JFXScad
- Size: 3.5 MB
- Stars: 60
- Watchers: 13
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeJavaFX - JFXScad - JavaFX 3D Printing IDE based on JCSG. (Libraries, Tools and Projects)
README
JFXScad
==========[](https://travis-ci.org/miho/JFXScad)
JavaFX 3D Printing IDE based on [JCSG](https://github.com/miho/JCSG).


## How to Build JFXScad
### Requirements
- Java >= 1.8
- Internet connection (dependencies are downloaded automatically)
- IDE: [Gradle](http://www.gradle.org/) Plugin (not necessary for command line usage)### IDE (with Gradle Plugin)
Open the `JFXScad` [Gradle](http://www.gradle.org/) project in your favourite IDE (tested with NetBeans 8) and build it
by calling the `assemble` task.### IDE (without Gradle Plugin)
#### Eclipse
Call the `eclipse` task from the command line and import the project to your workspace.
#### IntelliJ
Call the `idea` task from the command line and open the project.
### Command Line
Navigate to the [Gradle](http://www.gradle.org/) project (e.g., `path/to/JFXScad`) and enter the following command
#### Bash (Linux/OS X/Cygwin/other Unix-like shell)
```sh
sh gradlew assemble
```To run the JFXScad via gradle type:
```sh
sh gradlew run
```
#### Windows (CMD)```batch
gradlew assemble
```To run the JFXScad via gradle type:
```batch
gradlew run
```