R語言
grid.polygon
位於 grid
包(package)。 說明
這些函數創建並繪製多邊形。最終點將自動連接到初始點。
用法
grid.polygon(x=c(0, 0.5, 1, 0.5), y=c(0.5, 1, 0.5, 0),
id=NULL, id.lengths=NULL,
default.units="npc", name=NULL,
gp=gpar(), draw=TRUE, vp=NULL)
polygonGrob(x=c(0, 0.5, 1, 0.5), y=c(0.5, 1, 0.5, 0),
id=NULL, id.lengths=NULL,
default.units="npc", name=NULL,
gp=gpar(), vp=NULL)
參數
x |
指定 x-locations 的數值向量或單位對象。 |
y |
指定 y-locations 的數值向量或單位對象。 |
id |
用於將 |
id.lengths |
用於將 |
default.units |
指示 |
name |
字符標識符。 |
gp |
類 |
draw |
指示是否應生成圖形輸出的邏輯值。 |
vp |
網格視口對象(或 NULL)。 |
細節
這兩個函數都創建一個多邊形 grob(說明多邊形的圖形對象),但隻有 grid.polygon
繪製多邊形(並且僅當 draw
是 TRUE
時)。
值
一個抓取對象。
例子
grid.polygon()
# Using id (NOTE: locations are not in consecutive blocks)
grid.newpage()
grid.polygon(x=c((0:4)/10, rep(.5, 5), (10:6)/10, rep(.5, 5)),
y=c(rep(.5, 5), (10:6/10), rep(.5, 5), (0:4)/10),
id=rep(1:5, 4),
gp=gpar(fill=1:5))
# Using id.lengths
grid.newpage()
grid.polygon(x=outer(c(0, .5, 1, .5), 5:1/5),
y=outer(c(.5, 1, .5, 0), 5:1/5),
id.lengths=rep(4, 5),
gp=gpar(fill=1:5))
作者
Paul Murrell
也可以看看
相關用法
- R grid.points 繪製數據符號
- R grid.pack 將對象打包在框架內
- R grid.pretty 生成一組合理(“漂亮”)的斷點
- R grid.path 畫一條路徑
- R grid.place 將對象放置在框架內
- R grid.curve 在位置之間繪製曲線
- R grid.draw 畫一個網格
- R grid.stroke 描邊或填充路徑
- R grid.raster 渲染光柵對象
- R grid.force 強製將一個對象放入其組件中
- R grid.display.list 控製網格顯示列表
- R grid.show.viewport 繪製網格視口圖
- R grid.segments 繪製線段
- R grid.frame 創建用於包裝對象的框架
- R grid.group 畫一個組
- R grid.text 繪製文字
- R grid.xspline 繪製 X 樣條線
- R grid.copy 製作網格圖形對象的副本
- R grid.record 封裝計算和繪圖
- R grid.grab 抓取當前電網輸出
- R grid.show.layout 繪製網格布局圖
- R grid.convert 不同網格坐標係之間的轉換
- R grid.DLapply 修改網格顯示列表
- R grid.delay 封裝計算並生成grob
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Draw a Polygon。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。