biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
11 lines (10 loc) • 396 B
JavaScript
Clazz.declarePackage ("J.shapespecial");
Clazz.load (["J.shapespecial.Dots"], "J.shapespecial.GeoSurface", null, function () {
c$ = Clazz.declareType (J.shapespecial, "GeoSurface", J.shapespecial.Dots);
Clazz.defineMethod (c$, "initShape",
function () {
Clazz.superCall (this, J.shapespecial.GeoSurface, "initShape", []);
this.isSurface = true;
this.translucentAllowed = true;
});
});