Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

39
LINES

< > BotCompany Repo | #1031973 // Stripes - parallel stripes in any direction

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (4230L/23K).

sclass Stripes implements MakesBufferedImage {
  int w, h;
  double angle; // radians
  new L<Color> colors;
  new DoubleList positionsInDirection;
  new L<DoublePt> pixelPositions;
  
  *() {}
  *(int *w, int *h, double *angle, DoubleList *positionsInDirection) {}
  *(int *w, int *h, double *angle, DoubleList *positionsInDirection, L<Color> *colors) {}
  
  public int getWidth() { ret w; }
  public int getHeight() { ret h; }
  
  public BufferedImage getBufferedImage() {
    var img = newBufferedImage(w, h, first(colors));
    var g = graphics(img);
    translateGraphics(g, w*.5, h*.5);
    rotateGraphicsClockwise_radians(g, angle);
    double bigNumber = (w+h)*2;
    int n = numberOfStripes()-1;
    for (int i = 0; i < n; i++) {
      double x1 = positionsInDirection.get(i);
      double x2 = getOr(positionsInDirection, i+1, bigNumber);
      Color color1 = or(cyclicGet(colors, i+1), Color.black);
      /*Color color2 = or(cyclicGet(colors, i+1), Color.white);
      if (eq(color1, color2))*/
        g.setColor(color1);
      /*else
        g.setPaint(new GradientPaint((float) x1, 0, color1, (float) x2, 0, color2));*/
        
      fillPrecisePolygon(g, ll(doublePt(x1, -bigNumber), doublePt(x2, -bigNumber),
        doublePt(x2, bigNumber), doublePt(x1, bigNumber)));
    }
    ret img;
  }
  
  int numberOfStripes() { ret l(positionsInDirection)+1; }
}

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx

No comments. add comment

Snippet ID: #1031973
Snippet name: Stripes - parallel stripes in any direction
Eternal ID of this version: #1031973/19
Text MD5: 7ccf29052003528449ba93cbf507cc67
Transpilation MD5: 8e2872247fb1f4a1989093f7505b0b5b
Author: stefan
Category: javax / image reconstruction [dev.]
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-08-17 16:08:05
Source code size: 1413 bytes / 39 lines
Pitched / IR pitched: No / No
Views / Downloads: 137 / 301
Version history: 18 change(s)
Referenced in: [show references]