Jeremy Behreandt

Results 6 comments of Jeremy Behreandt

Hi @aelygon , Upon initializing the shape, the `PGraphic`'s [createShape](https://github.com/processing/processing/blob/94144be998354ecf7a06d5301b7b4fab72df724c/core/src/processing/core/PGraphics.java#L1771) method calls an overloaded [method](https://github.com/processing/processing/blob/94144be998354ecf7a06d5301b7b4fab72df724c/core/src/processing/core/PGraphics.java#L1779) which takes an integer code. This integer is assigned to the shape's [family](https://github.com/processing/processing/blob/94144be998354ecf7a06d5301b7b4fab72df724c/core/src/processing/core/PShape.java#L102). The default...

At first I thought the condition for a 90 deg angle wasn't being hit properly. (The conditional could still stand to be clarified, btw.) The next thought I had is...

Hi @Dylmm, I use a helper function like this to make conversions easier: ```lua local function changePixelFormat(format) if format == ColorMode.INDEXED then app.command.ChangePixelFormat { format = "indexed" } elseif format...

Yeah dunno. I checked with shaders turned off, and it looked like ok aside from the distribution (0, 36, 54... inclination). Unfortunately, I can't post pictures to Github at the...

After messing around with it some more, I wonder if gamma correction be the issue, as in `pow(d.x, 2.2)`? (If so, that would unfortunately mean that non-standard color profiles would...

I moved `strokeCap(PROJECT);` out of `setup` and into the same spot in your code as `strokeJoin(MITER);`. That changed the result. ![capScreenshot](https://github.com/benfry/processing4/assets/12038348/55e8713d-5660-4fdd-a087-ce099783c29c) Inkscape has an XML Editor where you can inspect...