mirror of https://github.com/adamdruppe/arsd.git
idk
This commit is contained in:
parent
3649029cf6
commit
dc887511b4
|
@ -24,32 +24,7 @@ import std.string; // FIXME: move to drawText X11 on next dmd
|
||||||
|
|
||||||
import std.stdio;
|
import std.stdio;
|
||||||
|
|
||||||
|
import arsd.color; // no longer stand alone... :-( but i need a common type for this to work with images easily.
|
||||||
struct Color {
|
|
||||||
ubyte r;
|
|
||||||
ubyte g;
|
|
||||||
ubyte b;
|
|
||||||
ubyte a;
|
|
||||||
|
|
||||||
this(int red, int green, int blue, int alpha = 255) {
|
|
||||||
this.r = cast(ubyte) red;
|
|
||||||
this.g = cast(ubyte) green;
|
|
||||||
this.b = cast(ubyte) blue;
|
|
||||||
this.a = cast(ubyte) alpha;
|
|
||||||
}
|
|
||||||
|
|
||||||
static Color transparent() {
|
|
||||||
return Color(0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static Color white() {
|
|
||||||
return Color(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
static Color black() {
|
|
||||||
return Color(0, 0, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct Point {
|
struct Point {
|
||||||
int x;
|
int x;
|
||||||
|
|
Loading…
Reference in New Issue