biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
54 lines (53 loc) • 1.65 kB
JavaScript
Clazz.declarePackage ("JU");
Clazz.load (null, "JU.Rgb16", ["JU.SB"], function () {
c$ = Clazz.decorateAsClass (function () {
this.r = 0;
this.g = 0;
this.b = 0;
Clazz.instantialize (this, arguments);
}, JU, "Rgb16");
Clazz.makeConstructor (c$,
function () {
});
c$.newI = Clazz.defineMethod (c$, "newI",
function (argb) {
var c = new JU.Rgb16 ();
c.setInt (argb);
return c;
}, "~N");
Clazz.defineMethod (c$, "setInt",
function (a) {
this.r = ((a >> 8) & 0xFF00) | 0x80;
this.g = ((a) & 0xFF00) | 0x80;
this.b = ((a << 8) & 0xFF00) | 0x80;
}, "~N");
Clazz.defineMethod (c$, "setRgb",
function (a) {
this.r = a.r;
this.g = a.g;
this.b = a.b;
}, "JU.Rgb16");
Clazz.defineMethod (c$, "diffDiv",
function (a, b, divisor) {
this.r = Clazz.doubleToInt ((a.r - b.r) / divisor);
this.g = Clazz.doubleToInt ((a.g - b.g) / divisor);
this.b = Clazz.doubleToInt ((a.b - b.b) / divisor);
}, "JU.Rgb16,JU.Rgb16,~N");
Clazz.defineMethod (c$, "setAndIncrement",
function (base, inc) {
this.r = base.r;
base.r += inc.r;
this.g = base.g;
base.g += inc.g;
this.b = base.b;
base.b += inc.b;
}, "JU.Rgb16,JU.Rgb16");
Clazz.defineMethod (c$, "getArgb",
function () {
return (0xFF000000 | ((this.r << 8) & 0x00FF0000) | (this.g & 0x0000FF00) | (this.b >> 8));
});
Clazz.overrideMethod (c$, "toString",
function () {
return new JU.SB ().append ("Rgb16(").appendI (this.r).appendC (',').appendI (this.g).appendC (',').appendI (this.b).append (" -> ").appendI ((this.r >> 8) & 0xFF).appendC (',').appendI ((this.g >> 8) & 0xFF).appendC (',').appendI ((this.b >> 8) & 0xFF).appendC (')').toString ();
});
});