當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing setLocation()用法及代碼示例


Processing, setLocation()用法介紹。

用法

  • surface.setLocation(x, y)

參數

  • x int:曲麵的 x 坐標
  • y int:表麵的 y 坐標

返回

  • void

說明

setLocation() 函數定義處理草圖相對於計算機屏幕左上角的位置。



Processing JavaDoc. 中記錄了 PSurface 的更多函數

例子

void setup() {
  size(200, 200);
  surface.setTitle("Hello World!");
  surface.setResizable(true);
  surface.setLocation(100, 100);
}

void draw() {
  background(204);
  line(0, 0, width, height);
  line(width, 0, 0, height); 
}

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 setLocation()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。