gpt4 book ai didi

java - 无法在处理中解析 rectMode() 的常量 CENTER

转载 作者:行者123 更新时间:2023-11-30 07:54:03 25 4
gpt4 key购买 nike

public void show(PGraphics pg, float x, float y)
{
pg.rectMode(CENTER);

}

我正在使用参数 CENTER 调用 rectMode,根据 docs,该参数应该是 int 类型的常量。 ,但CENTER无法解析。

此外,processing.core jar 的 META-INF/MANIFEST.MF 未指定其版本。

最佳答案

方法PGraphics.rectMode(mode)将模式作为参数。这些模式在类PConstants中定义。 .

引用模式CENTER ,你应该:

  • 使用代码 pg.rectMode(PConstants.CENTER); 并添加以下导入:importprocessing.core.PConstants;
  • 保持方法不变并进行以下静态导入:import staticprocessing.core.PConstants.CENTER

The syntax rectMode(CENTER) draws the image from its center point and uses the third and forth parameters of rect() to specify the image's width and height.

关于java - 无法在处理中解析 rectMode() 的常量 CENTER,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32934278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com