Uses of Class
ProGAL.geom3d.complex.CVertex

Packages that use CVertex
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.geom3d.complex.tessellation   
ProGAL.proteins   
 

Uses of CVertex in ProGAL.geom3d.complex
 

Methods in ProGAL.geom3d.complex that return CVertex
 CVertex CTetrahedron.findVertex(CTetrahedron tetr)
           
 CVertex[] CTetrahedron.getCommonVertices(CTetrahedron tetr)
          returns the vertices shared by two tetrahedra.
 CVertex CVertex.getDegPointA()
           
 CVertex CVertex.getDegPointB()
           
 CVertex CVertex.getDegPointOpposite()
           
 CVertex CTetrahedron.getPoint(int i)
           
 CVertex CEdge.getPoint(int i)
           
 CVertex CEdge.opposite(CVertex v)
           
 CVertex CTriangle.oppositeVertex(CEdge e)
          TODO: Copy to Triangle
 CVertex CTetrahedron.oppositeVertex(CTriangle base)
          TODO: Copy to Tetrahedron
 

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

Methods in ProGAL.geom3d.complex with parameters of type CVertex
 boolean CTriangle.containsPoint(CVertex point)
           
 boolean CTetrahedron.containsPoint(CVertex p)
           
 CTetrahedron CTetrahedron.findNeighbour(CVertex v)
          returns neighbouring tetrahedron containing v as the oppposite vertex
 int CTetrahedron.findpoint(CVertex p)
           
 int CTetrahedron.getID(CVertex v)
           
 CTetrahedron CTetrahedron.getNeighbour(CVertex v)
          returns neighbour tetrahedron containing specified vertex
 CVertex CEdge.opposite(CVertex v)
           
 CTriangle CTetrahedron.oppositeTriangle(CVertex v)
           
 void CVertex.setDegPointA(CVertex degPointA)
           
 void CVertex.setDegPointB(CVertex degPointB)
           
 void CVertex.setDegPointOpposite(CVertex degPointOpposite)
           
 void CTetrahedron.setPoint(CVertex p, int i)
           
 

Constructors in ProGAL.geom3d.complex with parameters of type CVertex
CEdge(CVertex p0, CVertex p1)
           
CTetrahedron(CVertex p0, CVertex p1, CVertex p2, CVertex p3)
           
CTriangle(CVertex p0, CVertex p1, CVertex p2, CTetrahedron t1, CTetrahedron t2)
           
 

Uses of CVertex in ProGAL.geom3d.complex.alphaComplex
 

Methods in ProGAL.geom3d.complex.alphaComplex that return types with arguments of type CVertex
 java.util.List<CVertex> AlphaFiltration.getVertices()
          Get a list of the vertices of the complex.
 

Methods in ProGAL.geom3d.complex.alphaComplex with parameters of type CVertex
 java.util.Set<CTetrahedron> AlphaFiltration.getVertexHull(CVertex v)
          The vertex-hull of v is the set of all tetrahedrons that has v as a corner-point.
 

Uses of CVertex in ProGAL.geom3d.complex.delaunayComplex
 

Methods in ProGAL.geom3d.complex.delaunayComplex that return CVertex
 CVertex DelaunayComplex.getVertex(int i)
           
 

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

Methods in ProGAL.geom3d.complex.delaunayComplex with parameters of type CVertex
 void DelaunayComplexRotation.addToHeap(CTetrahedron tetr, CVertex v, double rotationAngle, Circle circle)
           
 void DelaunayComplexRotation.drawScene(J3DScene scene, CVertex v, Circle circle)
           
 java.util.Set<CTetrahedron> DelaunayComplex.getVertexHull(CVertex v)
          The vertex-hull of v is the set of all tetrahedrons that has v as a corner-point
 void DelaunayComplexRotation.setupRotationHeap(CVertex v, double rotationAngle, Circle circle)
           
 

Uses of CVertex in ProGAL.geom3d.complex.tessellation
 

Methods in ProGAL.geom3d.complex.tessellation that return types with arguments of type CVertex
 java.util.List<CVertex> DelaunayTessellation.getVertices()
          Get the vertices in the complex.
 

Uses of CVertex in ProGAL.proteins
 

Methods in ProGAL.proteins that return CVertex
 CVertex ProteinComplex.getVertex(Point p)
           
 

Methods in ProGAL.proteins with parameters of type CVertex
 boolean ProteinComplex.isBuried(CVertex v)