molstar
Version:
A comprehensive macromolecular library.
33 lines (32 loc) • 1.17 kB
JavaScript
/**
* Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { StateTransforms } from '../transforms';
import { DataFormatProvider } from './provider';
export const ShapeFormatCategory = 'Shape';
export const PlyProvider = DataFormatProvider({
label: 'PLY',
description: 'PLY',
category: ShapeFormatCategory,
stringExtensions: ['ply'],
parse: async (plugin, data) => {
const format = plugin.state.data.build()
.to(data)
.apply(StateTransforms.Data.ParsePly, {}, { state: { isGhost: true } });
const shape = format.apply(StateTransforms.Model.ShapeFromPly);
await format.commit();
return { format: format.selector, shape: shape.selector };
},
visuals(plugin, data) {
const repr = plugin.state.data.build()
.to(data.shape)
.apply(StateTransforms.Representation.ShapeRepresentation3D);
return repr.commit();
}
});
export const BuiltInShapeFormats = [
['ply', PlyProvider],
];