Class SortedMesh

java.lang.Object
mgui.geometry.mesh.SortedMesh

public class SortedMesh
extends java.lang.Object
Sorts a mesh by x, y, z and stores a list of sorted indices
Author:
AndrewR
  • Field Summary

    Fields
    Modifier and Type Field Description
    java.util.ArrayList<java.lang.Integer> sorted_faces  
    java.util.ArrayList<java.lang.Integer> sorted_nodes  
  • Constructor Summary

    Constructors
    Constructor Description
    SortedMesh​(Mesh3D mesh)  
  • Method Summary

    Modifier and Type Method Description
    static Mesh3D.MeshFace3D getSortedFace​(Mesh3D.MeshFace3D face)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • sorted_nodes

      public java.util.ArrayList<java.lang.Integer> sorted_nodes
    • sorted_faces

      public java.util.ArrayList<java.lang.Integer> sorted_faces
  • Constructor Details

    • SortedMesh

      public SortedMesh​(Mesh3D mesh)
  • Method Details