EpitaphEdge constructor

EpitaphEdge(
  1. EpitaphVertex source,
  2. EpitaphVertex target,
  3. double weight,
  4. EpitaphEdgeAttributes attributes,
  5. double cardinalDir,
)

Implementation

factory EpitaphEdge(EpitaphVertex source, EpitaphVertex target, double weight,
    EpitaphEdgeAttributes attributes, double cardinalDir) {
  return EpitaphEdge._(source, target, weight, attributes, cardinalDir);
}