Class Layout
- java.lang.Object
-
- elki.visualization.parallel3d.layout.Layout
-
public class Layout extends java.lang.Object
Layout class.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Layout.Edge
Edge classstatic interface
Layout.Node
Node of the layout tree.
-
Field Summary
Fields Modifier and Type Field Description java.util.List<? extends Layout.Edge>
edges
Edgesjava.util.List<? extends Layout.Node>
nodes
Nodes
-
Constructor Summary
Constructors Constructor Description Layout()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Layout.Node
getNode(int dim)
Get the node for the given dimension.
-
-
-
Field Detail
-
nodes
public java.util.List<? extends Layout.Node> nodes
Nodes
-
edges
public java.util.List<? extends Layout.Edge> edges
Edges
-
-
Method Detail
-
getNode
public Layout.Node getNode(int dim)
Get the node for the given dimension.- Parameters:
dim
- Dimension- Returns:
- Node
-
-