Uses of Class
de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph.KSlimNode.Side

Packages that use KSlimNode.Side
de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph Slim graph representation for undirected graphs, used in many graph algorithms. 
 

Uses of KSlimNode.Side in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph that return KSlimNode.Side
 KSlimNode.Side KSlimFace.BorderEntry.firstSide()
          Returns the side of the contained edge at the first encountered node.
 KSlimNode.Side KSlimEdge.getSourceSide()
          Returns the source side.
 KSlimNode.Side KSlimEdge.getTargetSide()
          Returns the target side.
 KSlimNode.Side KSlimNode.Side.left()
          Returns the next side in counter-clockwise order.
 KSlimNode.Side KSlimNode.Side.opposed()
          Returns the opposed side.
 KSlimNode.Side KSlimNode.Side.right()
          Returns the next side in clockwise order.
 KSlimNode.Side KSlimFace.BorderEntry.secondSide()
          Returns the side of the contained edge at the second encountered node.
 KSlimNode.Side KSlimNode.IncEntry.side()
          Returns the side of the containing node on which this incidence entry lies.
static KSlimNode.Side KSlimNode.Side.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static KSlimNode.Side[] KSlimNode.Side.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph with parameters of type KSlimNode.Side
 void KSlimEdge.connectNodes(KSlimNode.Side thesourceSide, KSlimNode.Side thetargetSide)
          Connects this edge with the source and target respecting the order of incidence according to the given node sides.
 void KSlimEdge.setSourceSide(KSlimNode.Side thesourceSide)
          Sets the source side.
 void KSlimEdge.setTargetSide(KSlimNode.Side thetargetSide)
          Sets the target side.