We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDE, Core/Environment/Rendering
4.3.2
Windows
reported:Duplicate method settings() in type test why?
// Paste your code below :) PImage img; int[][] tilesX, tilesY; int tileSize = 50; void settings() { size(displayWidth, displayHeight); } void setup() { smooth(); img = loadImage("1.jpg"); int cols = (int) ceil(displayWidth / (float) tileSize); int rows = (int) ceil(displayHeight / (float) tileSize); tilesX = new int[cols][rows]; tilesY = new int[cols][rows]; for (int i = 0; i < cols; i++) { for (int j = 0; j < rows; j++) { tilesX[i][j] = i * tileSize; tilesY[i][j] = j * tileSize; } } } void draw() { background(255); int mouseXTile = (int) floor(mouseX / (float) tileSize); int mouseYTile = (int) floor(mouseY / (float) tileSize); image(img, mouseXTile * tileSize, mouseYTile * tileSize, tileSize, tileSize, mouseXTile * tileSize, mouseYTile * tileSize, tileSize, tileSize); } ### Additional context _No response_ ### Would you like to work on the issue? yes
The text was updated successfully, but these errors were encountered:
Hi @Whiteeth-princess this is a known issue, see here: #861
Sorry, something went wrong.
My question comes from why we can't use variables in the size() function in Processing and can only use numbers instead. So later, I used settings().
size()
settings()
No branches or pull requests
Most appropriate sub-area of Processing 4?
PDE, Core/Environment/Rendering
Processing version
4.3.2
Operating system
Windows
Steps to reproduce this
reported:Duplicate method settings() in type test why?
snippet
The text was updated successfully, but these errors were encountered: