Uses of Class
ProGAL.geom3d.complex.CTriangle

Packages that use CTriangle
ProGAL.geom3d.complex A simplicial complex is a topological space of a particular kind, constructed by "gluing together" points, line segments, triangles, and their n-dimensional counterparts. 
ProGAL.geom3d.complex.alphaComplex An alpha complex for a set of d-dimensional points and a real number alpha is a subset of the Delaunay complex where all simplices that can be enclosed by an alpha-probe (a hypersphere of radius alpha), without the probe enclosing any points, are removed. 
ProGAL.geom3d.complex.delaunayComplex A Delaunay complex for a set of d-dimensional points is a tesselation of the points such that no point is inside the circumscribing hypersphere of the d-simplices (for the 3D case: Tetrahedra). 
ProGAL.proteins   
 

Uses of CTriangle in ProGAL.geom3d.complex
 

Methods in ProGAL.geom3d.complex that return CTriangle
 CTriangle CTetrahedron.getTriangle(int index)
           
 CTriangle CTetrahedron.oppositeTriangle(CVertex v)
           
 

Methods in ProGAL.geom3d.complex that return types with arguments of type CTriangle
 java.util.List<CTriangle> CVertex.getAdjacentTriangles()
           
 java.util.List<CTriangle> CEdge.getAdjacentTriangles()
           
 java.util.List<CTriangle> CVertex.getOppositeTriangles()
           
 java.util.List<CTriangle> SimplicialComplex.getTriangles()
           
 

Methods in ProGAL.geom3d.complex with parameters of type CTriangle
 void CEdge.addTriangle(CTriangle tri)
           
 boolean CTetrahedron.containsTriangle(CTriangle t)
           
 CVertex CTetrahedron.oppositeVertex(CTriangle base)
          TODO: Copy to Tetrahedron
 void CTetrahedron.setTriangle(int index, CTriangle t)
           
 

Uses of CTriangle in ProGAL.geom3d.complex.alphaComplex
 

Methods in ProGAL.geom3d.complex.alphaComplex that return types with arguments of type CTriangle
 java.util.List<CTriangle> AlphaFiltration.getAlphaShape(double alpha)
           
 java.util.List<CTriangle> AlphaFiltration.getTriangles()
           
 java.util.List<CTriangle> AlphaComplex.getTriangles()
           
 java.util.List<CTriangle> AlphaFiltration.getTriangles(double alpha)
          Get a list of triangles that are part of the alpha-complex with the specified probe radius.
 

Uses of CTriangle in ProGAL.geom3d.complex.delaunayComplex
 

Methods in ProGAL.geom3d.complex.delaunayComplex that return types with arguments of type CTriangle
 java.util.List<CTriangle> DelaunayComplex.getTriangles()
          Get the triangles in the complex.
 

Uses of CTriangle in ProGAL.proteins
 

Methods in ProGAL.proteins that return types with arguments of type CTriangle
 java.util.List<CTriangle> ProteinComplex.getTriangles()