processing4 icon indicating copy to clipboard operation
processing4 copied to clipboard

Error of shape optimization

Open kaktus089123 opened this issue 1 year ago • 2 comments

Most appropriate sub-area of Processing 4?

Core/Environment/Rendering, OpenGL, Export

Processing version

5/4.3.1/3.5.4

Operating system

Windows/Android

Steps to reproduce this

"1.Use alpha in color of fill(). It start can be visible.

2.3D primitives or obj models."

snippet


// Paste your code below :)

void setup() {
fullScreen(P3D);
}

void draw() {
background(0);
rotateY(PI/180*frameCount);
fill(255,50);
box(100);
//or obj model
}

Additional context

Fix it in p3 and p4 please. I making programs for old windows and android versions. And in p4 doesn't load and save files in play mode and released app.

kaktus089123 avatar Jan 08 '25 11:01 kaktus089123