Copyright © 2018 Lloyd R. Prentice
Version: .01
Authors: Lloyd R. Prentice.
| formats/1 | Given paper stock, return list of page formats that will fit on the stock. |
| page_fits/2 | Returns true if paper stock is larger than. |
| page_height/1 | |
| page_size/1 | Return page width and height in points. |
| page_width/1 | |
| pages_across/2 | Return how many pages will fit across stock. |
| pages_down/2 | Return how many pages will fit vertically. |
| place_page/2 | Return coordinates to center page on paper stock. |
| place_pages/2 | Return list of coordinates on paper stock where page will fit. |
| place_pages/3 | Return list of coordinates for placement of. |
| select_stock/1 | Return list of standard paper stock sizes larger than selected format. |
| stock_height/1 | Returns height of stock in points. |
| stock_size/1 | Returns stock width and height in points. |
| stock_width/1 | Returns width of stock in points. |
formats(PaperStock::paper_stock()) -> list()
Given paper stock, return list of page formats that will fit on the stock
page_fits(PaperStock::atom(), Format::atom()) -> boolean()
Returns true if paper stock is larger than
page_height(Format::page_format()) -> points()
page_size(Format::page_format()) -> points_xy()
Return page width and height in points
page_width(Format::page_format()) -> points()
pages_across(PaperStock::paper_stock(), Format::page_format()) -> integer()
Return how many pages will fit across stock
pages_down(PaperStock::atom(), Format::atom()) -> integer()
Return how many pages will fit vertically
place_page(PaperStock::paper_stock(), Format::atom()) -> integer_xy()
Return coordinates to center page on paper stock
place_pages(PaperStock::paper_stock(), Format::page_format()) -> list()
Return list of coordinates on paper stock where page will fit
place_pages(PaperStock::paper_stock(), Format::page_format(), N::integer()) -> list()
Return list of coordinates for placement of
select_stock(Format::page_format()) -> paper_stock() | [paper_stock()]
Return list of standard paper stock sizes larger than selected format
stock_height(PaperStock::paper_stock()) -> points()
Returns height of stock in points
stock_size(PaperStock::paper_stock()) -> points_xy()
Returns stock width and height in points
stock_width(PaperStock::paper_stock()) -> points()
Returns width of stock in points
Generated by EDoc