Interface MeshParseResult


public interface MeshParseResult
Parsed mesh data represented as polygons ready for triangulation.

 List<MeshShape> shapes = result.toShape();
 
Since:
0.0.1
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull List<MeshShape>
    Returns the parsed polygons extracted from the mesh source.
  • Method Details

    • toShape

      @NotNull @NotNull List<MeshShape> toShape()
      Returns the parsed polygons extracted from the mesh source.
      Returns:
      immutable or caller-safe polygon data
      Since:
      0.0.1