UNPKG

biojs-vis-pdbviewer

Version:

A BioJS 2.0 component to view protein structures

48 lines (47 loc) 1.32 kB
Clazz.declarePackage ("J.render"); Clazz.load (null, "J.render.ShapeRenderer", ["JV.JC"], function () { c$ = Clazz.decorateAsClass (function () { this.vwr = null; this.tm = null; this.g3d = null; this.ms = null; this.shape = null; this.myVisibilityFlag = 0; this.shapeID = 0; this.colix = 0; this.mad = 0; this.madBeg = 0; this.madMid = 0; this.madEnd = 0; this.exportType = 0; this.isExport = false; Clazz.instantialize (this, arguments); }, J.render, "ShapeRenderer"); Clazz.defineMethod (c$, "initRenderer", function () { }); Clazz.defineMethod (c$, "setViewerG3dShapeID", function (vwr, shapeID) { this.vwr = vwr; this.tm = vwr.tm; this.shapeID = shapeID; this.myVisibilityFlag = JV.JC.getShapeVisibilityFlag (shapeID); this.initRenderer (); }, "JV.Viewer,~N"); Clazz.defineMethod (c$, "renderShape", function (g3d, modelSet, shape) { this.g3d = g3d; this.ms = modelSet; this.shape = shape; this.exportType = g3d.getExportType (); this.isExport = (this.exportType != 0); var needsTranslucent = this.render (); this.exportType = 0; this.isExport = false; return needsTranslucent; }, "J.api.JmolRendererInterface,JM.ModelSet,J.shape.Shape"); Clazz.defineMethod (c$, "isVisibleForMe", function (a) { return a.isVisible (this.myVisibilityFlag | 9); }, "JM.Atom"); });