RectangleExtensions Class
Definition
Section titled “Definition”Extensions for the SadRogue.Primitives.Rectangle type.
public static class RectangleExtensionsInheritance object
Methods
Section titled “Methods”ToPixels(Rectangle, Point)
Section titled “ToPixels(Rectangle, Point)”Converts a rectangle from cells to pixels.
public static Rectangle ToPixels(this Rectangle rect, Point fontSize)Parameters
Section titled “Parameters”rect SadRogue.Primitives.Rectangle
The rectangle to work with.
fontSize SadRogue.Primitives.Point
The font size used for translation.
Returns
Section titled “Returns”SadRogue.Primitives.Rectangle
A new rectangle in pixels.
ToPixels(Rectangle, int, int)
Section titled “ToPixels(Rectangle, int, int)”Converts a rectangle from cells to pixels.
public static Rectangle ToPixels(this Rectangle rect, int cellWidth, int cellHeight)Parameters
Section titled “Parameters”rect SadRogue.Primitives.Rectangle
The rectangle to work with.
cellWidth int
The width of a cell used in converting.
cellHeight int
The height of a cell used in converting.
Returns
Section titled “Returns”SadRogue.Primitives.Rectangle
A new rectangle in pixels.
ToConsole(Rectangle, Point)
Section titled “ToConsole(Rectangle, Point)”Converts a rectangle from pixels to cells.
public static Rectangle ToConsole(this Rectangle rect, Point fontSize)Parameters
Section titled “Parameters”rect SadRogue.Primitives.Rectangle
The rectangle to work with.
fontSize SadRogue.Primitives.Point
The font size used for translation.
Returns
Section titled “Returns”SadRogue.Primitives.Rectangle
A new rectangle in cell coordinates.
ToConsole(Rectangle, int, int)
Section titled “ToConsole(Rectangle, int, int)”Converts a rectangle from pixels to cells.
public static Rectangle ToConsole(this Rectangle rect, int cellWidth, int cellHeight)Parameters
Section titled “Parameters”rect SadRogue.Primitives.Rectangle
The rectangle to work with.
cellWidth int
The width of a cell used in converting.
cellHeight int
The height of a cell used in converting.
Returns
Section titled “Returns”SadRogue.Primitives.Rectangle
A new rectangle in cell coordinates.