molstar
Version:
A comprehensive macromolecular library.
16 lines • 587 B
JavaScript
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.PickingId = void 0;
var PickingId;
(function (PickingId) {
function areSame(a, b) {
return a.objectId === b.objectId && a.instanceId === b.instanceId && a.groupId === b.groupId;
}
PickingId.areSame = areSame;
})(PickingId = exports.PickingId || (exports.PickingId = {}));
//# sourceMappingURL=picking.js.map
;