biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
28 lines (27 loc) • 771 B
JavaScript
Clazz.declarePackage ("JU");
Clazz.load (["JU.T3d"], "JU.V3d", null, function () {
c$ = Clazz.declareType (JU, "V3d", JU.T3d);
Clazz.defineMethod (c$, "cross",
function (v1, v2) {
this.set (v1.y * v2.z - v1.z * v2.y, v1.z * v2.x - v1.x * v2.z, v1.x * v2.y - v1.y * v2.x);
}, "JU.V3d,JU.V3d");
Clazz.defineMethod (c$, "normalize",
function () {
var d = this.length ();
this.x /= d;
this.y /= d;
this.z /= d;
});
Clazz.defineMethod (c$, "dot",
function (v) {
return this.x * v.x + this.y * v.y + this.z * v.z;
}, "JU.V3d");
Clazz.defineMethod (c$, "lengthSquared",
function () {
return this.x * this.x + this.y * this.y + this.z * this.z;
});
Clazz.defineMethod (c$, "length",
function () {
return Math.sqrt (this.lengthSquared ());
});
});