소스 검색

added todo for gro parser regarding reusing static model parts

Alexander Rose 4 년 전
부모
커밋
ddafa7aac1
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/mol-model-formats/structure/gro.ts

+ 3 - 0
src/mol-model-formats/structure/gro.ts

@@ -113,6 +113,9 @@ namespace GroFormat {
     }
 }
 
+// TODO reuse static model parts when hierarchy is identical
+//      need to pass all gro.structures as one table into createModels
+
 export function trajectoryFromGRO(gro: GroFile): Task<Model.Trajectory> {
     return Task.create('Parse GRO', async ctx => {
         const format = GroFormat.fromGro(gro);