Пример #1
0
 public static void RaiseMolecularInteractionSettingsUpdated(MolecularInteractionSettings settings)
 {
     if (OnUpdateMolecularInteractionSettings != null)
     {
         OnUpdateMolecularInteractionSettings(settings);
     }
 }
Пример #2
0
 public static void RaiseStartMonitoringMoleculeInteractions(int molecule1ID, int molecule2ID, MolecularInteractionSettings interactionSettings, MoleculeRenderSettings molecule1Settings, MoleculeRenderSettings molecule2Settings)
 {
     if (OnStartMonitoringMoleculeInteractions != null)
     {
         OnStartMonitoringMoleculeInteractions(molecule1ID, molecule2ID, interactionSettings, molecule1Settings, molecule2Settings);
     }
 }