You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// First field (usize): The index of a commit within the graph.commits vector.
676
+
// Second field (usize): The visual column in the grid where this commit is located. This column is determined by the branch the commit belongs to.
677
+
// Purpose: This variant of Occ signifies that a specific row in the grid is occupied by a commit marker (dot or circle) at a particular column.
678
+
Commit(usize,usize),// index in Graph.commits, column
679
+
680
+
/// Horizontal line connecting two commits
681
+
// First field (usize): The index of the starting commit of a visual connection (usually the child commit).
682
+
// Second field (usize): The index of the ending commit of a visual connection (usually the parent commit).
683
+
// Third field (usize): The starting visual column of the range occupied by the connection line between the two commits. This is the minimum of the columns of the two connected commits.
684
+
// Fourth field (usize): The ending visual column of the range occupied by the connection line between the two commits. This is the maximum of the columns of the two connected commits.
685
+
// Purpose: This variant of Occ signifies that a range of columns in a particular row is occupied by a horizontal line segment connecting a commit to one of its parents. The range spans from the visual column of one commit to the visual column of the other.
0 commit comments