Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

Graph_PageDirection

mattt edited this page Nov 16, 2020 · 2 revisions

Graph.PageDirection

"BL", "BR", "TL", "TR", "RB", "RT", "LB", "LT". These specify the 8 row or column major orders for traversing a rectangular array, the first character corresponding to the major order and the second to the minor order. Thus, for "BL", the major order is from bottom to top, and the minor order is from left to right. This means the bottom row is traversed first, from left to right, then the next row up, from left to right, and so on, until the topmost row is traversed.

public enum PageDirection

Inheritance

Hashable, String

Enumeration Cases

bottomToTopLeftToRight

case bottomToTopLeftToRight

bottomToTopRightToLeft

case bottomToTopRightToLeft

topToBottomLeftToRight

case topToBottomLeftToRight

topToBottomRightToLeft

case topToBottomRightToLeft

rightToLeftBottomToTop

case rightToLeftBottomToTop

rightToLeftTopToBottom

case rightToLeftTopToBottom

leftToRightBottomToTop

case leftToRightBottomToTop

leftToRightTopToBottom

case leftToRightTopToBottom
Clone this wiki locally