https://github.com/miho/jcsg-meshextensions-sample
https://github.com/miho/jcsg-meshextensions-sample
constructive-solid-geometries csg java jcsg mesh
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/miho/jcsg-meshextensions-sample
- Owner: miho
- License: other
- Created: 2017-01-27T21:13:01.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-10T19:27:30.000Z (almost 7 years ago)
- Last Synced: 2025-02-15T21:20:04.722Z (2 months ago)
- Topics: constructive-solid-geometries, csg, java, jcsg, mesh
- Language: Java
- Size: 79.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JCSG-MeshExtensions-Sample
Demonstrates the [JCSG-MeshExtensions](https://github.com/miho/JCSG-MeshExtensions) library, a [JCSG](https://github.com/miho/JCSG) extension library for producing high-quality meshes from [JCSG](https://github.com/miho/JCSG) mesh objects. The mesh optimization is performed with the cross-platform meshing software [ProMesh](http://promesh3d.com/) which is available as [ug4](https://github.com/UG4/ugcore) plugin.
## Sample Code
```java
// we use cube and sphere as base geometries
CSG cube = new Cube(2).toCSG();
CSG sphere = new Sphere(1.25).toCSG();// compute difference between cube and sphere
CSG cubeMinusSphere = cube.difference(sphere);// create a copy of cube-sphere that shall be optimized
CSG optimized = cubeMinusSphere.
transformed(Transform.unity().translateX(3));// perform the optimization
CSG all = MeshTools.optimize(
optimized, // csg object to optimize
1e-6, // tolerance
1e-4, // max tolerance
0.25, // min edge length
1.5 // max edge length
);// save combined unoptimized and optimized mesh as "all.stl"
Files.write(Paths.get("all.stl"), all.toStlString().getBytes());
```## How to Run JCSG-MeshExtensions-Sample
### Requirements
- Java >= 1.8
- Internet connection (dependencies are downloaded automatically)
- IDE: [Gradle](http://www.gradle.org/) Plugin (not necessary for command line usage)### IDE
Open the `JCSG-MeshExtensions-Sample` [Gradle](http://www.gradle.org/) project in your favourite IDE (tested with NetBeans 8.2) and build it
by calling the `run` task.### Command Line
Navigate to the [Gradle](http://www.gradle.org/) project (e.g., `path/to/JCSG-MeshExtensions-Sample`) and enter the following command
#### Bash (Linux/OS X/Cygwin/other Unix-like shell)
bash gradlew run
#### Windows (CMD)gradlew run