Skip to content
New issue

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

“settings” bug #945

Closed
Whiteeth-princess opened this issue Feb 6, 2025 · 2 comments
Closed

“settings” bug #945

Whiteeth-princess opened this issue Feb 6, 2025 · 2 comments
Labels
bug Something isn't working

Comments

@Whiteeth-princess
Copy link

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

// 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
@Whiteeth-princess Whiteeth-princess added the bug Something isn't working label Feb 6, 2025
@Stefterv
Copy link
Collaborator

Stefterv commented Feb 6, 2025

Hi @Whiteeth-princess this is a known issue, see here: #861

@Stefterv Stefterv closed this as completed Feb 6, 2025
@Whiteeth-princess
Copy link
Author

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().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants