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


Processing pmouseY用法及代碼示例


Processing, pmouseY用法介紹。

說明

係統變量pmouseY 始終包含鼠標在當前幀之前的幀中的垂直位置。有關如何在 draw() 內部更新 pmouseY 和鼠標事件的更多詳細信息在 pmouseX 的參考中進行了說明。

例子

// Move the mouse quickly to see the difference 
// between the current and previous position 
void draw() { 
  background(204); 
  line(20, mouseY, 80, pmouseY); 
  println(mouseY + " : " + pmouseY);
} 

相關用法


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