mirror of
https://github.com/braillerap/BrailleRap.git
synced 2025-06-08 18:09:57 +02:00
19 lines
240 B
Java
19 lines
240 B
Java
import java.awt.Point;
|
|
import java.util.ArrayList;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @author lenovo
|
|
*
|
|
*/
|
|
public interface BrailleGcodeEncoding {
|
|
|
|
public ArrayList<Point> GetCharacterDots (char a);
|
|
public int getNRow ();
|
|
public int getNline ();
|
|
|
|
}
|