File tree Expand file tree Collapse file tree
src/main/java/eu/mihosoft/vrl/v3d Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -318,7 +318,8 @@ public StringBuilder toStlString(StringBuilder sb) {
318318 this .getVertices ().get (2 ).toStlString (sb ).append ("\n " ).append ("endloop\n " ).append ("endfacet\n " );
319319
320320 } else {
321- throw new RuntimeException ("Polygon must be a triangle before STL can be made, vertices: " + getVertices ().size ());
321+ throw new RuntimeException (
322+ "Polygon must be a triangle before STL can be made, vertices: " + getVertices ().size ());
322323 }
323324
324325 return sb ;
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ private static String stripTrailingZeros(String formatted) {
316316 return formatted ; // Nothing to do
317317
318318 int i = formatted .length () - 1 ;
319-
319+
320320 while ((i > decPos ) && (formatted .charAt (i ) == '0' ))
321321 i --;
322322
You can’t perform that action at this time.
0 commit comments