当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。