Skip to content

Instantly share code, notes, and snippets.

View SDIDSA's full-sized avatar
🐢
Focusing

Zinelabidine Teyar SDIDSA

🐢
Focusing
  • self-employed
  • Algeria
View GitHub Profile
@jewelsea
jewelsea / TranslucentPane.java
Created April 1, 2013 18:33
Displays a translucent pane with solid children in JavaFX.
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class TranslucentPane extends Application {
@Override public void start(final Stage stage) throws Exception {
@codebucketdev
codebucketdev / FontCreator.java
Last active February 14, 2024 06:56
Font Creator for j2game/PixEngine, made for Majoolwip.
package org.j2game.editor;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics2D;
import java.awt.GraphicsEnvironment;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;