This commit is contained in:
2024-03-18 13:54:22 +01:00
parent eb581c8a31
commit a28bef01d7
69 changed files with 855 additions and 5 deletions

Binary file not shown.

View File

@@ -0,0 +1,17 @@
package formesable;
import javax.swing.JComponent;
import java.awt.Graphics;
import java.awt.Color;
public class Sablier extends JComponent {
@Override
public void paintComponent(Graphics pinceau) {
Graphics secondPinceau = pinceau.create();
secondPinceau.setColor(Color.CYAN);
int[] x = null;
y = new int[] {90,0,0,90};
int[] y = null;
x = new int[] {100,0,100,0};
secondPinceau.fillPolygon(x,y,4);
}
}