fill_shape {cursr}R Documentation

Draw a Filled-In Shape

Description

Calculate the path of a shape given supplied vertices and draw to screen.

Usage

fill_shape(mat, cycle = TRUE, n = 30, text = "x", ...)

Arguments

mat

an Nx2 matrix of (row, col) coordinates

cycle

logical value determining whether to the first and last coordinates

n

number of points along each edge to calculate

text

character value drawn at coordinate

...

parameters that are passed to style(), including the foreground color fg, background color bg, and attribute attr

Value

NULL

See Also

Other drawing functions: box_at(), draw_arc(), draw_bezier(), draw_circle(), draw_ellipse(), draw_fn(), draw_lerp(), draw_path(), draw_ray(), draw_rect(), draw_shape(), fill_circle(), fill_ellipse(), fill_rect(), grid_at(), grid_mat(), hline_at(), hline(), vline_at(), vline()

Examples

# Right Triangle
fill_shape(rbind(
  c(10,1),
  c(10,10),
  c(1,1)
), cycle=TRUE)


[Package cursr version 0.1.0 Index]