DICycle

public struct DICycle

Information about cycle.

  • array of vertex indices. Don’t contains dublicates.

    Declaration

    Swift

    public let vertexIndices: [Int]
  • array of edges. edges[index] it’s edge from vertexIndices[index] to vertexIndices[(index + 1) % count]

    Declaration

    Swift

    public let edges: [DIEdge]