Exemplo n.º 1
0
 def resultantcollection(self):
     path = f"{self.assembly.name}::Resultants"
     if not self._resultantcollection:
         self._resultantcollection = compas_blender.create_collections_from_path(path)[1]
     return self._resultantcollection
Exemplo n.º 2
0
 def pathcollection(self):
     path = f"{self.network.name}::Paths"
     if not self._pathcollection:
         self._pathcollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._pathcollection
Exemplo n.º 3
0
 def blockcollection(self):
     path = f"{self.assembly.name}::Blocks"
     if not self._blockcollection:
         self._blockcollection = compas_blender.create_collections_from_path(path)[1]
     return self._blockcollection
Exemplo n.º 4
0
 def interfacecollection(self):
     path = f"{self.assembly.name}::Interfaces"
     if not self._interfacecollection:
         self._interfacecollection = compas_blender.create_collections_from_path(path)[1]
     return self._interfacecollection
Exemplo n.º 5
0
 def vertexcollection(self):
     path = f"{self.mesh.name}::Vertices"
     if not self._vertexcollection:
         self._vertexcollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._vertexcollection
Exemplo n.º 6
0
 def facecollection(self):
     path = f"{self.mesh.name}::Faces"
     if not self._facecollection:
         self._facecollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._facecollection
Exemplo n.º 7
0
 def facecollection(self):
     if not self._facecollection:
         self._facecollection = compas_blender.create_collections_from_path(
             'Mesh::Faces')[1]
     return self._facecollection
Exemplo n.º 8
0
 def edgecollection(self):
     if not self._edgecollection:
         self._edgecollection = compas_blender.create_collections_from_path(
             'Mesh::Edges')[1]
     return self._edgecollection
Exemplo n.º 9
0
 def vertexcollection(self):
     if not self._vertexcollection:
         self._vertexcollection = compas_blender.create_collections_from_path(
             'Mesh::Vertices')[1]
     return self._vertexcollection
Exemplo n.º 10
0
 def pathcollection(self):
     if not self._pathcollection:
         self._pathcollection = compas_blender.create_collections_from_path(
             'Network::Paths')[1]
     return self._pathcollection
Exemplo n.º 11
0
 def nodecollection(self):
     if not self._nodecollection:
         self._nodecollection = compas_blender.create_collections_from_path(
             'Network::Nodes')[1]
     return self._nodecollection