Rebol Programming/span?

USAGE: edit

SPAN? pane /part count 

DESCRIPTION: edit

Returns a block of [min max] bounds for all faces

SPAN? is a function value.

ARGUMENTS edit

  • pane -- (Type: block)

REFINEMENTS edit

  • /part
    • count -- Limit the number of faces (Type: integer)

SOURCE CODE edit

span?: func [
    "Returns a block of [min max] bounds for all faces" 
    pane [block!] 
    /part count [integer!] "Limit the number of faces" 
    /local origin margin
][
    origin: 100000x100000 
    margin: 0x0 
    foreach item pane [
        if object? item [
            if all [count negative? count: count - 1] [break] 
            origin: min origin item/offset 
            margin: max margin item/offset + item/size
        ]
    ] 
    reduce [origin margin]
]