Uses of Class
ProGAL.geom3d.complex.CEdge

Packages that use CEdge
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 CEdge in ProGAL.geom3d.complex
 

Methods in ProGAL.geom3d.complex that return CEdge
 CEdge CTriangle.getEdge(int i)
           
 

Methods in ProGAL.geom3d.complex that return types with arguments of type CEdge
 java.util.List<CEdge> CVertex.getAdjacentEdges()
           
 java.util.List<CEdge> SimplicialComplex.getEdges()
           
 

Methods in ProGAL.geom3d.complex with parameters of type CEdge
 void CVertex.addAdjacentEdge(CEdge e)
           
 CVertex CTriangle.oppositeVertex(CEdge e)
          TODO: Copy to Triangle
 void CTriangle.setEdge(int i, CEdge e)
           
 

Uses of CEdge in ProGAL.geom3d.complex.alphaComplex
 

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

Uses of CEdge in ProGAL.geom3d.complex.delaunayComplex
 

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

Uses of CEdge in ProGAL.proteins
 

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