processing / processing/processing4
Depth sorting not working for lines in PDF or SVG export
還沒有人認領這個 Issue。
- 主要語言
- Java
- 星號
- 497
- 分支
- 183
- 平均合併
- 4 小時 39 分鐘
- 30 天內合併 PR
- 3
描述
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
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先,在 Ubuntu 22.04 上執行提供的 Processing 4.3 sketch,並在啟用 ENABLE_DEPTH_SORT 的情況下比較螢幕、PDF 和 SVG 輸出。追蹤線條在 PDF 和 SVG 匯出路徑中如何提交並依深度排序,然後確認重疊線條遵循其深度順序,同時維持現有球體行為不變。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- java
- 領域
- computer-graphics
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 35/100