molstar
Version:
A comprehensive macromolecular library.
22 lines • 909 B
JavaScript
/**
* Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Segmentation = void 0;
var tslib_1 = require("tslib");
var Impl = (0, tslib_1.__importStar)(require("./impl/segmentation"));
var Segmentation;
(function (Segmentation) {
Segmentation.create = Impl.create;
Segmentation.ofOffsets = Impl.ofOffsets;
Segmentation.count = Impl.count;
Segmentation.getSegment = Impl.getSegment;
Segmentation.projectValue = Impl.projectValue;
/** Segment iterator that mutates a single segment object to mark all the segments. */
Segmentation.transientSegments = Impl.segments;
})(Segmentation || (Segmentation = {}));
exports.Segmentation = Segmentation;
//# sourceMappingURL=segmentation.js.map
;