David Sehnal

Results 234 comments of David Sehnal

@sillitoe Thanks, I will see what I can do about this. I might have some initial version soon. I understand that the entry barrier for using LiteMol can be somewhat...

@sillitoe I have added the first iteration of the [SimpleController](https://github.com/dsehnal/LiteMol/blob/master/src/Plugin/Plugin/SimpleController.ts) class, a corresponding [example](https://github.com/dsehnal/LiteMol/tree/master/examples/SimpleController), and a section to the FAQ. It wraps the creation of the plugin instance and includes...

No, this is my bad. It needs to be `LiteMol.Plugin.create` (I copy-pasted it from the TypeScript code where the LiteMol namespace in implicit), fixed it in the FAQ.

No, that's the way the controls are rendered when not in the fullscreen mode. You can add `layoutState: { hideControls: true }` when creating the plugin to hide them by...

To expand on the controls a little, for example if you don't want the Log, you can create a custom spec (for example by copying it from one of the...

Hi, The data for this example was generated by [MOLE](https://webchem.ncbr.muni.cz/Platform/App/Mole), including the surface triangulation (which is saved a list of vertices and triangles). It might be a little overkill for...

But the existing algorithm is there. You can use the primitives and labels example as a base to render spheres with the appropriate radius along your channel's centerline.

Hi, something like this is already supported by [Mol*](https://molstar.org/viewer/) (successor to LiteMol and NGL viewers) on the right side in Representation -> Preset menu. With some React knowledge you can...

Hi, it is shown how to do this in examples at the pdb-lite-mol wrapper page: https://github.com/mandarsd/pdb-lite-mol/blob/master/examples/main/litemol-customize-demo.html David

What you need should be possible to accomplish by https://github.com/dsehnal/LiteMol/blob/master/examples/Commands/src/App.ts#L291 (Color Sequences here https://webchemdev.ncbr.muni.cz/LiteMol/Examples/Commands/ )