mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	include the code used to gen these gfx
This commit is contained in:
		
							parent
							
								
									ea8737d957
								
							
						
					
					
						commit
						27d19f2ec8
					
				
							
								
								
									
										19
									
								
								skins/base/img/p/piechart.pde
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								skins/base/img/p/piechart.pde
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,19 @@
 | 
			
		||||
// a trivial processing.org snippet to generate these
 | 
			
		||||
// using java2d (ugh).  Peity and JS might have been
 | 
			
		||||
// a better idea.  Or SVG.
 | 
			
		||||
 | 
			
		||||
size(48, 48);
 | 
			
		||||
g = createGraphics(48, 48, JAVA2D);
 | 
			
		||||
 | 
			
		||||
for (int i = 0; i <= 20; i++) {
 | 
			
		||||
  g.beginDraw();
 | 
			
		||||
  g.background(0.0, 0.0);
 | 
			
		||||
  g.smooth();
 | 
			
		||||
  g.strokeCap(SQUARE);
 | 
			
		||||
  g.strokeWeight(3);
 | 
			
		||||
  g.stroke(0x80, 0xcf, 0xf4, 255.0);
 | 
			
		||||
  g.fill(0.0, 0.0);
 | 
			
		||||
  g.arc(24, 24, 43, 43, -PI/2, -PI/2 + (i*2*PI/20.0));
 | 
			
		||||
  g.save("p" + i + ".png");
 | 
			
		||||
  g.endDraw();
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user