processing / processing/processing4
Depth sorting not working for lines in PDF or SVG export
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 494
- Forks
- 183
- Avg merge
- 4h 39m
- Merged PRs (30d)
- 3
Description
Created by: PBernalPolo
Description
Rendering lines or spheres on the screen works fine. When we render spheres to PDF or SVG, they are depth sorted properly. However, lines are not depth sorted; they are drawn in the order of declaration.
Expected Behavior
Lines should also be drawn according to their depth ordering (at least with hint(ENABLE_DEPTH_SORT) enabled).
Current Behavior
Lines are currently drawn according to their declaration order (even with hint(ENABLE_DEPTH_SORT) enabled).
Steps to Reproduce
Comment/uncomment each line that appears in draw().
import processing.pdf.*;
import processing.svg.*;
void setup()
{
size( 500 , 500 , P3D );
hint( ENABLE_DEPTH_SORT );
}
void draw()
{
// Choose one:
//drawToScreen();
drawToPDF();
//drawToSVG();
}
void drawToPDF()
{
// Here we generate the PDF document.
beginRaw( PDF , "output.pdf" );
drawMyStuff();
endRaw();
exit();
}
void drawToSVG()
{
// Here we generate the SVG image.
beginRaw( SVG , "output.svg" );
drawMyStuff();
endRaw();
exit();
}
void drawToScreen()
{
// Here we just draw to the screen.
drawMyStuff();
}
void drawMyStuff()
{
background(255);
lights();
strokeWeight( 50 );
// First we draw the line that should be shown on top (black).
stroke( 0 , 0 , 0 );
line( 250 , 50 , 100 , 250 , 450 , 100 );
// Then the line that should be shown behind (red).
stroke( 255 , 0 , 0 );
line( 50 , 250 , -100 , 450 , 250 , -100 );
stroke( 0 , 0 , 0 );
strokeWeight( 1 );
// First, draw a green sphere that should appear on top.
pushMatrix();
fill( 0 , 255 , 0 );
translate( width*4/10 , height*4/10 , 50 );
sphere( 70 );
popMatrix();
// Then draw a blue sphere that should appear behind.
pushMatrix();
fill( 0 , 0 , 255 );
translate( width*3/10 , height*3/10 , -50 );
sphere( 70 );
popMatrix();
}
Your Environment
- Processing version: 4.3
- Operating System and OS version: ubuntu 22.04
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the provided Processing 4.3 sketch on Ubuntu 22.04 and compare screen, PDF, and SVG output with ENABLE_DEPTH_SORT enabled. Trace how lines are submitted and depth-sorted in the PDF and SVG export paths, then verify that overlapping lines follow their depth ordering while the existing sphere behavior remains unchanged.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- computer-graphics
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 35/100