-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Cyanobacterium
committed
Sep 4, 2014
1 parent
1ecba42
commit d1a88a7
Showing
4 changed files
with
61 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
|
||
package hall.collin.christopher.stl4j; | ||
/** | ||
* This is the main package for STL-Parser-for-Java. It is a barebones parser | ||
* for .STL files. | ||
*/ | ||
* <p>This is the main package for STL-Parser-for-Java. It is a barebones parser | ||
* for .STL files. </p> | ||
* <p>Example:<br> | ||
<code> | ||
List<Triangle> mesh = STLParser.parseSTLFile(file.toPath());<br> | ||
mesh.forEach((Triangle t)->{System.out.println(t);}); | ||
</code> | ||
* </p> | ||
*/ | ||
package hall.collin.christopher.stl4j; |