R語言
grid.stroke
位於 grid
包(package)。 說明
這些函數描邊(沿邊界畫一條線)或填充(或兩者)路徑,其中路徑由 grob 定義。
用法
strokeGrob(x, ...)
## S3 method for class 'grob'
strokeGrob(x, name=NULL, gp=gpar(), vp=NULL, ...)
## S3 method for class 'GridPath'
strokeGrob(x, name=NULL, vp=NULL, ...)
grid.stroke(...)
fillGrob(x, ...)
## S3 method for class 'grob'
fillGrob(x, rule=c("winding", "evenodd"),
name=NULL, gp=gpar(), vp=NULL, ...)
## S3 method for class 'GridPath'
fillGrob(x, name=NULL, vp=NULL, ...)
grid.fill(...)
fillStrokeGrob(x, ...)
## S3 method for class 'grob'
fillStrokeGrob(x, rule=c("winding", "evenodd"),
name=NULL, gp=gpar(), vp=NULL, ...)
## S3 method for class 'GridPath'
fillStrokeGrob(x, name=NULL, vp=NULL, ...)
grid.fillStroke(...)
as.path(x, gp=gpar(), rule=c("winding", "evenodd"))
參數
x |
grob 或調用 |
rule |
填充規則。 |
name |
字符標識符。 |
gp |
類 |
vp |
網格視口對象(或 NULL)。 |
... |
|
細節
路徑由 x
中給出的 grob 將繪製的形狀定義。格羅布隻對路徑的輪廓做出貢獻;線條顏色和填充等圖形參數設置將被忽略。
grid.stroke()
隻會繪製邊框(即使指定了填充)。
grid.fill()
隻會填充路徑(即使指定了線條顏色)。
僅當指定非透明線條顏色時才會發生描邊,並且僅當指定非透明填充時才會發生填充。
as.path()
允許圖形參數設置和填充規則與 grob 關聯。這在指定視口的剪切路徑時非常有用(請參閱viewport
)。
並非所有圖形設備都支持這些函數:例如xfig
和pictex
不支持。
值
一個抓取對象。
例子
## NOTE: on devices without support for stroking and filling
## nothing will be drawn
grid.newpage()
grid.stroke(textGrob("hello", gp=gpar(cex=10)))
grid.fill(circleGrob(1:2/3, r=.3), gp=gpar(fill=rgb(1,0,0,.5)))
作者
Paul Murrell
也可以看看
相關用法
- R grid.show.viewport 繪製網格視口圖
- R grid.segments 繪製線段
- R grid.show.layout 繪製網格布局圖
- R grid.set 設置網格圖形對象
- R grid.curve 在位置之間繪製曲線
- R grid.draw 畫一個網格
- R grid.raster 渲染光柵對象
- R grid.points 繪製數據符號
- R grid.force 強製將一個對象放入其組件中
- R grid.display.list 控製網格顯示列表
- R grid.frame 創建用於包裝對象的框架
- R grid.group 畫一個組
- R grid.pack 將對象打包在框架內
- R grid.text 繪製文字
- R grid.xspline 繪製 X 樣條線
- R grid.copy 製作網格圖形對象的副本
- R grid.record 封裝計算和繪圖
- R grid.pretty 生成一組合理(“漂亮”)的斷點
- R grid.grab 抓取當前電網輸出
- R grid.convert 不同網格坐標係之間的轉換
- R grid.DLapply 修改網格顯示列表
- R grid.delay 封裝計算並生成grob
- R grid.polygon 繪製多邊形
- R grid.function 繪製代表函數的曲線
- R grid.move.to 移動或繪製到指定位置
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Stroke or Fill a Path。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。